account for build type case sensitivity
This commit is contained in:
parent
2a01850a8e
commit
9cd93ac7c9
|
|
@ -23,7 +23,7 @@ target_link_libraries(Player PRIVATE Common Engine)
|
|||
|
||||
set_target_properties(Player PROPERTIES OUTPUT_NAME "RNR.Player")
|
||||
|
||||
if(NOT CMAKE_BUILD_TYPE STREQUAL "DEBUG")
|
||||
if(NOT CMAKE_BUILD_TYPE STREQUAL "Debug")
|
||||
set_target_properties(Player PROPERTIES
|
||||
WIN32_EXECUTABLE ON
|
||||
MACOSX_BUNDLE ON
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ target_link_libraries(Studio PRIVATE Common Engine)
|
|||
|
||||
set_target_properties(Studio PROPERTIES OUTPUT_NAME "RNR.Studio")
|
||||
|
||||
if(NOT CMAKE_BUILD_TYPE STREQUAL "DEBUG")
|
||||
if(NOT CMAKE_BUILD_TYPE STREQUAL "Debug")
|
||||
set_target_properties(Studio PROPERTIES
|
||||
WIN32_EXECUTABLE ON
|
||||
MACOSX_BUNDLE ON
|
||||
|
|
|
|||
Loading…
Reference in New Issue