From: <ai...@us...> - 2009-06-16 07:33:56
|
Revision: 10047 http://plplot.svn.sourceforge.net/plplot/?rev=10047&view=rev Author: airwin Date: 2009-06-16 07:33:55 +0000 (Tue, 16 Jun 2009) Log Message: ----------- Process bindings/python/pyqt4 in correct order (so that qt target will have been defined by the time bindings/python/pyqt4/CMakeLists.txt is processed by cmake). Modified Paths: -------------- trunk/CMakeLists.txt trunk/bindings/python/CMakeLists.txt Modified: trunk/CMakeLists.txt =================================================================== --- trunk/CMakeLists.txt 2009-06-16 07:31:49 UTC (rev 10046) +++ trunk/CMakeLists.txt 2009-06-16 07:33:55 UTC (rev 10047) @@ -137,9 +137,10 @@ add_subdirectory(data) add_subdirectory(bindings) add_subdirectory(drivers) -# Must be processed after drivers since depends on qt target created by -# drivers. +# qt_gui and pyqt4 subdirectories must be processed after drivers since they +# depend on qt target created by drivers. add_subdirectory(bindings/qt_gui) +add_subdirectory(bindings/python/pyqt4) add_subdirectory(examples) add_subdirectory(utils) add_subdirectory(plplot_test) Modified: trunk/bindings/python/CMakeLists.txt =================================================================== --- trunk/bindings/python/CMakeLists.txt 2009-06-16 07:31:49 UTC (rev 10046) +++ trunk/bindings/python/CMakeLists.txt 2009-06-16 07:33:55 UTC (rev 10047) @@ -115,7 +115,8 @@ DESTINATION ${PYTHON_INSTDIR} ) -# This is for building the pyqt4 bindings to plplot -add_subdirectory(pyqt4) +# Processing the subdirectory below must be done from the top-level +# CMakeLists.txt (see comment there). +# add_subdirectory(pyqt4) endif(ENABLE_python) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |