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.
This commit is contained in:
parent
493dee0ade
commit
424612c0e7
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue