mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-25 07:29:01 -05:00
19 lines
522 B
Meson
19 lines
522 B
Meson
# Native tools
|
|
subdir('csv2bin')
|
|
subdir('fixrom')
|
|
subdir('knarc')
|
|
subdir('msgenc')
|
|
subdir('postconf')
|
|
|
|
# Prebuilt tools
|
|
makebanner_exe = find_program('makebanner', native: true)
|
|
makelcf_exe = find_program('makelcf', native: true)
|
|
makerom_exe = find_program('makerom', native: true)
|
|
|
|
# External tools
|
|
nitrogfx_exe = find_program('nitrogfx', native: true, required: false)
|
|
if not nitrogfx_exe.found()
|
|
subproject('nitrogfx', default_options: 'native=true')
|
|
nitrogfx_exe = find_program('nitrogfx', native: true)
|
|
endif
|