diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-11-30 02:36:13 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-11-30 02:36:13 (GMT) |
commit | 445e091ffaa1f3b8d745fde38ab02680781088b9 (patch) | |
tree | de647a1f45fbc378db15b3c7a9845b73c966d181 /Tests/LibName | |
parent | b56a60d01e8b30dec54b118bc7738ec199a459d4 (diff) | |
download | CMake-445e091ffaa1f3b8d745fde38ab02680781088b9.zip CMake-445e091ffaa1f3b8d745fde38ab02680781088b9.tar.gz CMake-445e091ffaa1f3b8d745fde38ab02680781088b9.tar.bz2 |
ENH: fix test to run with debug or release and put the exe next to the dll, still shows the bug this is testing for
Diffstat (limited to 'Tests/LibName')
-rw-r--r-- | Tests/LibName/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/LibName/CMakeLists.txt b/Tests/LibName/CMakeLists.txt index 649aae3..e97b6b1 100644 --- a/Tests/LibName/CMakeLists.txt +++ b/Tests/LibName/CMakeLists.txt @@ -1,5 +1,6 @@ project(LibName) set(LIBRARY_OUTPUT_PATH lib) +set(EXECUTABLE_OUTPUT_PATH lib) add_library(bar SHARED bar.c) add_library(foo SHARED foo.c) target_link_libraries(foo bar) |