mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-26 20:25:37 -05:00
14 lines
230 B
Meson
14 lines
230 B
Meson
csv2bin_exe = executable('csv2bin',
|
|
sources: [
|
|
'main.cpp',
|
|
'CsvFile.cpp',
|
|
'Manifest.cpp',
|
|
'Options.cpp'
|
|
],
|
|
cpp_args: [
|
|
'-DNDEBUG',
|
|
'-std=c++17'
|
|
],
|
|
native: true
|
|
)
|