OctaCore/src/meson.build
Daniel Kolesa 5b7e1e6dd2 use standard assert()
and define NDEBUG for all buildtypes that are not debug, to
disable it by default
2020-07-30 03:48:18 +02:00

12 lines
263 B
Meson

add_global_arguments('-D_FILE_OFFSET_BITS=64', language: 'cpp')
if get_option('buildtype') != 'debug'
add_global_arguments('-DNDEBUG', language: 'cpp')
endif
octacore_includes = [
include_directories('.', 'shared', 'engine', 'game')
]
subdir('client')