|
From: <ai...@us...> - 2009-11-10 19:13:51
|
Revision: 10579
http://plplot.svn.sourceforge.net/plplot/?rev=10579&view=rev
Author: airwin
Date: 2009-11-10 19:13:35 +0000 (Tue, 10 Nov 2009)
Log Message:
-----------
Fix test_c_tk target dependencies.
Modified Paths:
--------------
trunk/examples/CMakeLists.txt
Modified: trunk/examples/CMakeLists.txt
===================================================================
--- trunk/examples/CMakeLists.txt 2009-11-10 19:04:24 UTC (rev 10578)
+++ trunk/examples/CMakeLists.txt 2009-11-10 19:13:35 UTC (rev 10579)
@@ -584,6 +584,13 @@
DEPENDS
${interactive_device_depends_${device}}
)
+ if(device STREQUAL "tk")
+ if(CORE_BUILD)
+ add_dependencies(test_c_tk tclIndex_tk tclIndex_tcl plserver xwin)
+ else(CORE_BUILD)
+ add_dependencies(test_c_tk plserver xwin)
+ endif(CORE_BUILD)
+ endif(device STREQUAL "tk")
list(APPEND interactive_targets_LIST test_c_${device})
endforeach(interactive_devices_info ${INTERACTIVE_DEVICES_LIST})
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|