taisei/src/stages/meson.build
Andrei Alexeyev 9af300d4df
add 'developer' option to decouple cheats etc. from build type
developer=true  --> DEBUG macro is set, regardless of build type
    developer=false --> DEBUG macro is not set, regardless of build type
    developer=auto  --> DEBUG macro is set only on debug* build types;
    this matches old behavior and is the default.
2019-01-25 02:02:56 +02:00

21 lines
338 B
Meson

stages_src = files(
'stage1.c',
'stage1_events.c',
'stage2.c',
'stage2_events.c',
'stage3.c',
'stage3_events.c',
'stage4.c',
'stage4_events.c',
'stage5.c',
'stage5_events.c',
'stage6.c',
'stage6_events.c',
)
if is_developer_build
stages_src += files(
'dpstest.c',
)
endif