diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-05-03 22:10:49 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-05-03 22:10:49 (GMT) |
commit | e9e69b7e5e5a331662093f801ada63494ffac0be (patch) | |
tree | 5342978409741e7ce018489594148beb85e2caea /Tests/Complex | |
parent | cdf550de13a021d9d695618a9da97ae951efe9a0 (diff) | |
download | CMake-e9e69b7e5e5a331662093f801ada63494ffac0be.zip CMake-e9e69b7e5e5a331662093f801ada63494ffac0be.tar.gz CMake-e9e69b7e5e5a331662093f801ada63494ffac0be.tar.bz2 |
fix borland test
Diffstat (limited to 'Tests/Complex')
-rw-r--r-- | Tests/Complex/Library/CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Tests/Complex/Library/CMakeLists.txt b/Tests/Complex/Library/CMakeLists.txt index 9feeb27..250ec32 100644 --- a/Tests/Complex/Library/CMakeLists.txt +++ b/Tests/Complex/Library/CMakeLists.txt @@ -22,12 +22,14 @@ ADD_LIBRARY(CMakeTestLibrary LibrarySources) IF(WIN32) IF(NOT CYGWIN) - TARGET_LINK_LIBRARIES(CMakeTestLibrary + IF(NOT BORLAND) + TARGET_LINK_LIBRARIES(CMakeTestLibrary debug user32.lib) - TARGET_LINK_LIBRARIES(CMakeTestLibrary + TARGET_LINK_LIBRARIES(CMakeTestLibrary optimized kernel32.lib) + ENDIF(NOT BORLAND) ENDIF(NOT CYGWIN) ENDIF(WIN32) |