diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2002-03-26 19:41:33 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2002-03-26 19:41:33 (GMT) |
commit | e0f36dbfba99a2c2f83c70439b7c6207b2e4ee84 (patch) | |
tree | 8969f249bc05787d5e9770350e820e3b93690df1 /Tests/ComplexOneConfig | |
parent | d198c5e0729566ec34a2d2d4c5c1010c21adbf55 (diff) | |
download | CMake-e0f36dbfba99a2c2f83c70439b7c6207b2e4ee84.zip CMake-e0f36dbfba99a2c2f83c70439b7c6207b2e4ee84.tar.gz CMake-e0f36dbfba99a2c2f83c70439b7c6207b2e4ee84.tar.bz2 |
ENH: Use ${CMAKE_CFG_INTDIR} instead of hardcoded RelInfo, Debug, Release, etc.
Diffstat (limited to 'Tests/ComplexOneConfig')
-rw-r--r-- | Tests/ComplexOneConfig/Executable/CMakeLists.txt | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Tests/ComplexOneConfig/Executable/CMakeLists.txt b/Tests/ComplexOneConfig/Executable/CMakeLists.txt index 4d0e845..c4d5f3c 100644 --- a/Tests/ComplexOneConfig/Executable/CMakeLists.txt +++ b/Tests/ComplexOneConfig/Executable/CMakeLists.txt @@ -10,12 +10,8 @@ TARGET_LINK_LIBRARIES(complex ${COMPLEX_LIBS}) # Link to CMake lib # FIND_LIBRARY(CMAKE_LIB - CMakeLib - ${Complex_BINARY_DIR}/../../Source - ${Complex_BINARY_DIR}/../../Source/Debug - ${Complex_BINARY_DIR}/../../Source/Release - ${Complex_BINARY_DIR}/../../Source/MinSizeRel - ${Complex_BINARY_DIR}/../../Source/RelWithDebInfo) + CMakeLib + ${Wrapping_BINARY_DIR}/../../Source/${CMAKE_CFG_INTDIR}) # Specify the same one for debug/optimized to increase coverage TARGET_LINK_LIBRARIES(complex |