From: <ai...@us...> - 2010-08-13 15:18:00
|
Revision: 11134 http://plplot.svn.sourceforge.net/plplot/?rev=11134&view=rev Author: airwin Date: 2010-08-13 15:17:54 +0000 (Fri, 13 Aug 2010) Log Message: ----------- The test_tcl_standard_examples target uses the xwin device. So only add test_tcl_standard_examples target if PLD_xwin is ON. Modified Paths: -------------- trunk/examples/CMakeLists.txt Modified: trunk/examples/CMakeLists.txt =================================================================== --- trunk/examples/CMakeLists.txt 2010-08-12 22:25:28 UTC (rev 11133) +++ trunk/examples/CMakeLists.txt 2010-08-13 15:17:54 UTC (rev 11134) @@ -845,7 +845,7 @@ list(APPEND interactive_targets_LIST test_pygcw) endif(ENABLE_pygcw) - if(ENABLE_tcl) + if(ENABLE_tcl AND PLD_xwin) if(CORE_BUILD) add_custom_target(test_tcl_standard_examples COMMAND ${CMAKE_CURRENT_BINARY_DIR}/tcl/standard_examples -dev xwin -np @@ -870,7 +870,7 @@ endif(FILE_DEPENDS_xwin) list(APPEND interactive_targets_LIST ${test_tcl_standard_examples}) - endif(ENABLE_tcl) + endif(ENABLE_tcl AND PLD_xwin) if(ENABLE_tk AND PLD_tk) set(targets_examples_tk) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |