summaryrefslogtreecommitdiff
path: root/Tests/SimpleInstall
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2004-02-03 09:26:36 -0500
committerAndy Cedilnik <andy.cedilnik@kitware.com>2004-02-03 09:26:36 -0500
commit59adb4eabe6881cd29bc2470ad63b54d8527039e (patch)
tree3b2fde18743775a83bd5d9d94eaf0daf664a2a34 /Tests/SimpleInstall
parentc06828a4a0e419b6d3ab5bd0f885ce507ee382b7 (diff)
downloadcmake-59adb4eabe6881cd29bc2470ad63b54d8527039e.tar.gz
ENH: Fix ADD_DEPENDENCIES on Unix makefiles and fix SimpleInstall test not to link the module
Diffstat (limited to 'Tests/SimpleInstall')
-rw-r--r--Tests/SimpleInstall/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/Tests/SimpleInstall/CMakeLists.txt b/Tests/SimpleInstall/CMakeLists.txt
index d87ec48fbf..ede22c1ce4 100644
--- a/Tests/SimpleInstall/CMakeLists.txt
+++ b/Tests/SimpleInstall/CMakeLists.txt
@@ -9,7 +9,9 @@ ADD_LIBRARY(test1 STATIC lib1.cxx)
ADD_LIBRARY(test2 SHARED lib2.cxx)
ADD_LIBRARY(test3 MODULE lib3.cxx)
ADD_EXECUTABLE (SimpleInstall inst.cxx foo.c foo.h)
-TARGET_LINK_LIBRARIES(SimpleInstall test1 test2 test3)
+TARGET_LINK_LIBRARIES(SimpleInstall test1 test2)
+
+ADD_DEPENDENCIES(SimpleInstall test3)
INSTALL_TARGETS(/bin SimpleInstall)
INSTALL_TARGETS(/lib test1 test2 test3)