diff options
author | Brad King <brad.king@kitware.com> | 2005-11-17 21:49:48 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-11-17 21:49:48 (GMT) |
commit | a9c2ff474ed61a2ee0224b9f6bd735e9d41323ae (patch) | |
tree | 2195e8a70c25570f1a751612b366ca28e338e199 /Tests/Wrapping/CMakeLists.txt | |
parent | 8dc8232027ba0cb639c5c8fe7b19a873da6e8f61 (diff) | |
download | CMake-a9c2ff474ed61a2ee0224b9f6bd735e9d41323ae.zip CMake-a9c2ff474ed61a2ee0224b9f6bd735e9d41323ae.tar.gz CMake-a9c2ff474ed61a2ee0224b9f6bd735e9d41323ae.tar.bz2 |
COMP: Need target-level dependency from wrapper targets on Wrap executable target.
Diffstat (limited to 'Tests/Wrapping/CMakeLists.txt')
-rw-r--r-- | Tests/Wrapping/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Tests/Wrapping/CMakeLists.txt b/Tests/Wrapping/CMakeLists.txt index 6395982..60a0c15 100644 --- a/Tests/Wrapping/CMakeLists.txt +++ b/Tests/Wrapping/CMakeLists.txt @@ -62,6 +62,7 @@ VTK_WRAP_TCL (wraplibTCL TCL_SRCS ${SRCS}) ADD_CUSTOM_TARGET(wraplibTCL ALL ${CMAKE_COMMAND} -E echo "dummy target" ) +ADD_DEPENDENCIES(wraplibTCL Wrap) # # Wrap VTK -> Python @@ -72,6 +73,7 @@ VTK_WRAP_PYTHON (wraplibPython Python_SRCS ${SRCS}) ADD_CUSTOM_TARGET(wraplibPython ALL ${CMAKE_COMMAND} -E echo "dummy target" ) +ADD_DEPENDENCIES(wraplibPython Wrap) # # Wrap VTK -> Java @@ -92,6 +94,7 @@ CONFIGURE_FILE( ADD_CUSTOM_TARGET(wraplibJava ALL ${CMAKE_COMMAND} -E echo "dummy target" ) +ADD_DEPENDENCIES(wraplibJava Wrap) # # QT Wrappers |