mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-26 00:32:20 -05:00
20 lines
268 B
Meson
20 lines
268 B
Meson
c_srcs = []
|
|
|
|
if build_machine.system() == 'windows'
|
|
c_srcs += 'fnmatch.c'
|
|
endif
|
|
|
|
cpp_scrs = [
|
|
'Source.cpp',
|
|
'Narc.cpp'
|
|
]
|
|
|
|
knarc_exe = executable('knarc',
|
|
sources: [
|
|
c_srcs,
|
|
cpp_scrs
|
|
],
|
|
cpp_args: '-std=c++17',
|
|
native: true
|
|
)
|