mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-08-14 13:11:45 -05:00
Some checks failed
build / build (push) Has been cancelled
Co-authored-by: Rachel <rachel@lhea.me>
30 lines
767 B
Meson
30 lines
767 B
Meson
rapidjson_dep = dependency('rapidjson')
|
|
|
|
# Native tools with helper libraries
|
|
subdir('nitroarc') # libnitroarc
|
|
subdir('enumproc') # libenum
|
|
subdir('dataproc') # Requires libnitroarc and libenum
|
|
subdir('msgenc') # Requires libdataproc
|
|
|
|
# Other native tools
|
|
subdir('datagen')
|
|
subdir('fixrom')
|
|
subdir('jsoncnv')
|
|
subdir('nitrobtx')
|
|
subdir('nitrogfx')
|
|
subdir('nitrorom')
|
|
subdir('ordergen')
|
|
subdir('postconf')
|
|
subdir('scripts')
|
|
subdir('debug')
|
|
|
|
copy_exe = find_program('cp')
|
|
|
|
# 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)
|
|
SDATTool_py = find_program('SDATTool_py', native: true)
|