mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
28 lines
538 B
Meson
28 lines
538 B
Meson
charmap_txt = fs.copyfile('charmap.txt')
|
|
|
|
msgenc_exe = executable('msgenc',
|
|
sources: [
|
|
'msgenc.cpp',
|
|
'Options.cpp',
|
|
'MessagesConverter.cpp',
|
|
'MessagesDecoder.cpp',
|
|
'MessagesEncoder.cpp',
|
|
'Gmm.cpp',
|
|
'Json.cpp',
|
|
'pugixml.cpp'
|
|
],
|
|
cpp_args: [
|
|
'-DNDEBUG',
|
|
'-g',
|
|
'-std=c++17',
|
|
'-Wall',
|
|
'-Wextra',
|
|
'-Wpedantic',
|
|
'-Wno-unused-parameter',
|
|
],
|
|
native: true,
|
|
dependencies: [
|
|
rapidjson_dep,
|
|
]
|
|
)
|