diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-10-31 21:55:49 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-10-31 21:55:49 (GMT) |
commit | 368d7f7c185b8d6b8d0ab5c0e173cf5b59e75749 (patch) | |
tree | 9d1ccd9ddacb83eae6e30fdce0cc005fbad375b5 /Tests/COnly | |
parent | ba707ce32dd107191b892f03226488a96c52ec4b (diff) | |
download | CMake-368d7f7c185b8d6b8d0ab5c0e173cf5b59e75749.zip CMake-368d7f7c185b8d6b8d0ab5c0e173cf5b59e75749.tar.gz CMake-368d7f7c185b8d6b8d0ab5c0e173cf5b59e75749.tar.bz2 |
ENH: Attempt to add debug library postfix for visual studio 6
Diffstat (limited to 'Tests/COnly')
-rw-r--r-- | Tests/COnly/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Tests/COnly/CMakeLists.txt b/Tests/COnly/CMakeLists.txt index 2386c23..228eecb 100644 --- a/Tests/COnly/CMakeLists.txt +++ b/Tests/COnly/CMakeLists.txt @@ -1,5 +1,7 @@ # a simple C only test case PROJECT (conly C) + +SET(CMAKE_DEBUG_POSTFIX "_test_debug_postfix") ADD_LIBRARY(testc1 STATIC libc1.c) ADD_LIBRARY(testc2 SHARED libc2.c) ADD_EXECUTABLE (conly conly.c foo.c foo.h) |