diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-05-03 18:10:49 -0400 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-05-03 18:10:49 -0400 |
commit | e9e69b7e5e5a331662093f801ada63494ffac0be (patch) | |
tree | 5342978409741e7ce018489594148beb85e2caea /Tests/ComplexOneConfig/Library/CMakeLists.txt | |
parent | cdf550de13a021d9d695618a9da97ae951efe9a0 (diff) | |
download | cmake-e9e69b7e5e5a331662093f801ada63494ffac0be.tar.gz |
fix borland test
Diffstat (limited to 'Tests/ComplexOneConfig/Library/CMakeLists.txt')
-rw-r--r-- | Tests/ComplexOneConfig/Library/CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Tests/ComplexOneConfig/Library/CMakeLists.txt b/Tests/ComplexOneConfig/Library/CMakeLists.txt index 9feeb271ba..250ec323f2 100644 --- a/Tests/ComplexOneConfig/Library/CMakeLists.txt +++ b/Tests/ComplexOneConfig/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) |