mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-26 08:41:27 -05:00
22 lines
377 B
Meson
22 lines
377 B
Meson
subdir('mmodel')
|
|
|
|
mmodel_narc = custom_target('mmodel.narc',
|
|
output: 'mmodel.narc',
|
|
input: mmodel_files_targets,
|
|
command: [
|
|
narc_exe, 'create',
|
|
'--output', '@OUTPUT0@',
|
|
'@OUTDIR@/mmodel',
|
|
]
|
|
)
|
|
|
|
nitrofs_files += mmodel_narc
|
|
|
|
prebuilt_files = [
|
|
'fldeff.narc'
|
|
]
|
|
|
|
foreach f : prebuilt_files
|
|
nitrofs_files += fs.copyfile(f)
|
|
endforeach
|