From 3b5139a3d86fc3e37289c5fbe58483838520924f Mon Sep 17 00:00:00 2001 From: Brad King Date: Sat, 24 Jan 2004 12:52:14 -0500 Subject: BUG: Due to backward ordering, Visual Studio GUIs need the link directories for the libraries the first time. --- Tests/Jump/Executable/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Tests/Jump/Executable/CMakeLists.txt b/Tests/Jump/Executable/CMakeLists.txt index 032c212..7658b7e 100644 --- a/Tests/Jump/Executable/CMakeLists.txt +++ b/Tests/Jump/Executable/CMakeLists.txt @@ -1,2 +1,6 @@ +IF(NOT LIBRARY_OUTPUT_PATH) + LINK_DIRECTORIES(${Jump_BINARY_DIR}/Library/Static + ${Jump_BINARY_DIR}/Library/Shared) +ENDIF(NOT LIBRARY_OUTPUT_PATH) ADD_EXECUTABLE(jumpExecutable jumpExecutable.cxx) TARGET_LINK_LIBRARIES(jumpExecutable jumpStatic jumpShared) -- cgit v0.12