mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
24 lines
667 B
Meson
24 lines
667 B
Meson
rapidjson_dep = dependency('rapidjson')
|
|
|
|
# Native tools
|
|
subdir('csv2bin')
|
|
subdir('datagen')
|
|
subdir('fixrom')
|
|
subdir('json2bin')
|
|
subdir('msgenc')
|
|
subdir('ordergen')
|
|
subdir('postconf')
|
|
subdir('scripts')
|
|
subdir('debug')
|
|
|
|
# ARM binutils
|
|
arm_none_eabi_gcc_exe = find_program('arm-none-eabi-gcc', native: true)
|
|
arm_none_eabi_objcopy_exe = find_program('arm-none-eabi-objcopy', native: true)
|
|
|
|
# Subproject tools
|
|
makelcf_exe = find_program('makelcf', native: true)
|
|
nitrogfx_exe = find_program('nitrogfx', native: true)
|
|
nitrorom_exe = find_program('nitrorom', native: true)
|
|
narc_exe = find_program('narc', native: true)
|
|
SDATTool_py = find_program('SDATTool_py', native: true)
|