psp2name/meson.build

19 lines
490 B
Meson

project('psp2name', 'd', 'c',
default_options: ['buildtype=debug'],
)
pspgamelists = files('data/redump.csv')
d_compiler = meson.get_compiler('d')
#if get_option('buildtype') == 'release'
# add_project_arguments('-noboundscheck', language: 'd')
#endif
if d_compiler.get_id() == 'llvm'
add_project_arguments('-d-version=USE_SCG', language: 'd')
endif
libisoinfo_proj = subproject('isoinfo')
libisoinfo_dep = libisoinfo_proj.get_variable('libisoinfo_dep')
subdir('tools')
subdir('src')