summaryrefslogtreecommitdiffstats
path: root/Tests/ComplexRelativePaths/Executable
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-08-30 13:54:48 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-08-30 13:54:48 (GMT)
commit31f80f19aec938a3109e6d8c17172a3538d0477f (patch)
tree7b7b546d521d3e8e3e6cdd034a876e7a4ba2e3f4 /Tests/ComplexRelativePaths/Executable
parentb64c6bba1120535af111ababee66e6965add096c (diff)
downloadCMake-31f80f19aec938a3109e6d8c17172a3538d0477f.zip
CMake-31f80f19aec938a3109e6d8c17172a3538d0477f.tar.gz
CMake-31f80f19aec938a3109e6d8c17172a3538d0477f.tar.bz2
add rpcrt4.lib because of CMakeLib needing it
Diffstat (limited to 'Tests/ComplexRelativePaths/Executable')
-rw-r--r--Tests/ComplexRelativePaths/Executable/CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/Tests/ComplexRelativePaths/Executable/CMakeLists.txt b/Tests/ComplexRelativePaths/Executable/CMakeLists.txt
index 9eaf3ff..8d3c11d 100644
--- a/Tests/ComplexRelativePaths/Executable/CMakeLists.txt
+++ b/Tests/ComplexRelativePaths/Executable/CMakeLists.txt
@@ -16,7 +16,10 @@ ADD_EXECUTABLE(complex complex)
IF (UNIX)
TARGET_LINK_LIBRARIES(complex CMakeLib ${CMAKE_DL_LIBS})
ELSE(UNIX)
- TARGET_LINK_LIBRARIES(complex CMakeLib)
+ TARGET_LINK_LIBRARIES(complex CMakeLib)
+ IF (NOT BORLAND)
+ TARGET_LINK_LIBRARIES(complex rpcrt4.lib)
+ ENDIF(NOT BORLAND)
ENDIF (UNIX)
#