Fixed incorrect debug executable names

This commit is contained in:
Clownacy 2019-05-23 11:10:11 +00:00
parent 609d54916b
commit 21cef10e4b

View file

@ -11,7 +11,7 @@ project(DoConfig LANGUAGES CXX)
add_executable(DoConfig "DoConfig.cpp" "icon.rc") add_executable(DoConfig "DoConfig.cpp" "icon.rc")
# Name debug builds "DoConfig_debug", to distinguish them # Name debug builds "DoConfig_debug", to distinguish them
set_target_properties(CSE2 PROPERTIES DEBUG_OUTPUT_NAME "DoConfig_debug") set_target_properties(DoConfig PROPERTIES DEBUG_OUTPUT_NAME "DoConfig_debug")
# Windows tweak # Windows tweak
if(WIN32) if(WIN32)