From: Nuno Subtil Date: Fri, 25 Jan 2019 17:30:37 +0000 (-0800) Subject: build: Do not cache debug library suffix X-Git-Tag: upstream/11.4.0~554^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=424612c0e79886e9ad7e9b172b15a73229ff7f46;p=platform%2Fupstream%2Fglslang.git build: Do not cache debug library suffix For nested project builds, writing CMAKE_DEBUG_POSTFIX into the cache ends up affecting other projects. Caching this value doesn't seem to be required in practice, so this change removes the cache tag. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 5dc9c664..aafa70ed 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -73,7 +73,7 @@ if(ENABLE_HLSL) endif(ENABLE_HLSL) if(WIN32) - set(CMAKE_DEBUG_POSTFIX "d" CACHE STRING "Adds a postfix for debug-built libraries.") + set(CMAKE_DEBUG_POSTFIX "d") if(MSVC) include(ChooseMSVCCRT.cmake) endif(MSVC)