diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-01-23 13:43:58 -0500 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-01-23 13:43:58 -0500 |
commit | 1a31bb2056995dc3c3958ccfe4e4c10afd991a25 (patch) | |
tree | ed6360f516e0a0600eee349fc4001639d04db449 /Tests/Jump | |
parent | 927b2b419c2db02ae44c12a6ee6bbd86602c6ad8 (diff) | |
download | cmake-1a31bb2056995dc3c3958ccfe4e4c10afd991a25.tar.gz |
BUG: libdir was set wrong on windows
Diffstat (limited to 'Tests/Jump')
-rw-r--r-- | Tests/Jump/Library/Shared/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Jump/Library/Shared/CMakeLists.txt b/Tests/Jump/Library/Shared/CMakeLists.txt index f0e09afa54..f020446fc6 100644 --- a/Tests/Jump/Library/Shared/CMakeLists.txt +++ b/Tests/Jump/Library/Shared/CMakeLists.txt @@ -7,7 +7,7 @@ IF(WIN32) IF(EXECUTABLE_OUTPUT_PATH) SET(EXE_DIR ${EXECUTABLE_OUTPUT_PATH}) ENDIF(EXECUTABLE_OUTPUT_PATH) - SET(LIB_DIR ${Jump_BINARY_DIR}/Library) + SET(LIB_DIR ${Jump_BINARY_DIR}/Library/Shared) IF(LIBRARY_OUTPUT_PATH) SET(LIB_DIR ${LIBRARY_OUTPUT_PATH}) ENDIF(LIBRARY_OUTPUT_PATH) |