Commit 424612c0 by Nuno Subtil

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.
parent 493dee0a
...@@ -73,7 +73,7 @@ if(ENABLE_HLSL) ...@@ -73,7 +73,7 @@ if(ENABLE_HLSL)
endif(ENABLE_HLSL) endif(ENABLE_HLSL)
if(WIN32) if(WIN32)
set(CMAKE_DEBUG_POSTFIX "d" CACHE STRING "Adds a postfix for debug-built libraries.") set(CMAKE_DEBUG_POSTFIX "d")
if(MSVC) if(MSVC)
include(ChooseMSVCCRT.cmake) include(ChooseMSVCCRT.cmake)
endif(MSVC) endif(MSVC)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment