From 8dcfc4818d3ed45e8309d0341f144e7404f8f46c Mon Sep 17 00:00:00 2001 From: ibs Date: Wed, 27 Feb 2013 11:40:19 +0400 Subject: [PATCH] 0023801: cmake configuration process should search 3rdparty libraries with release name in any case build type (debug or release) --- src/WOKTclLib/templates/template.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/WOKTclLib/templates/template.cmake b/src/WOKTclLib/templates/template.cmake index e3d2316..9a614ea 100644 --- a/src/WOKTclLib/templates/template.cmake +++ b/src/WOKTclLib/templates/template.cmake @@ -110,7 +110,7 @@ install(FILES "__CASROOT_DIR__/src/UnitsAPI/Units.dat" DESTINATION "${INSTA IF("${BUILD_TYPE}" STREQUAL "Release") SET(BUILD_SUFFIX "") ELSE() - SET(BUILD_SUFFIX "d") + SET(BUILD_SUFFIX "") # debug == release ENDIF() FUNCTION(SUBDIRECTORY_NAMES MAIN_DIRECTORY RESULT) @@ -329,7 +329,7 @@ IF (3RDPARTY_USE_TBB) SET(TBB_DEBUG_POSTFIX "") if("${CMAKE_BUILD_TYPE}" STREQUAL "Debug") - SET(TBB_DEBUG_POSTFIX "_debug") + SET(TBB_DEBUG_POSTFIX "") # _debug postfix removed ENDIF() IF("${3RDPARTY_TBB_LIBRARY}" STREQUAL "" OR CHANGES_ARE_NEEDED) -- 2.39.5