Renamed debug builds to 'CSE2_debug' and 'DoConfig_debug'

Makes a bit more sense than 'CSE2d' and 'DoConfigd'
This commit is contained in:
Clownacy 2019-05-22 00:29:16 +00:00
parent aa44e7ca49
commit 609d54916b
4 changed files with 9 additions and 9 deletions

8
.gitignore vendored
View file

@ -16,13 +16,13 @@ msvc2003/devilution/compare.asm
# Exclude build output on Linux (exclude normally produced executable files and out files)
build_en/CSE2
build_en/CSE2d
build_en/CSE2_debug
build_en/DoConfig
build_en/DoConfigd
build_en/DoConfig_debug
build_jp/CSE2
build_jp/CSE2d
build_jp/CSE2_debug
build_jp/DoConfig
build_jp/DoConfigd
build_jp/DoConfig_debug
build_en/*.out
build_jp/*.out

View file

@ -294,9 +294,9 @@ set_target_properties(CSE2 PROPERTIES
CXX_EXTENSIONS OFF
)
# Name debug builds "CSE2d", to distinguish them
# Name debug builds "CSE2_debug", to distinguish them
set_target_properties(CSE2 PROPERTIES
DEBUG_OUTPUT_NAME "CSE2d"
DEBUG_OUTPUT_NAME "CSE2_debug"
)
# Send executable to the build_en/build_jp directory

View file

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

View file

@ -4,7 +4,7 @@ ifeq ($(RELEASE), 1)
FILENAME_DEF = CSE2
else
CXXFLAGS = -Og -g3
FILENAME_DEF = CSE2d
FILENAME_DEF = CSE2_debug
endif
ifeq ($(JAPANESE), 1)