mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-22 15:08:09 -05:00
Some checks are pending
build / build (push) Waiting to run
* Remove extraneous `include/` directory level from brightness_controller * Wrap WSL_ACCESSING_WINDOWS detection in realpath * Integrate metroskrew as the default compiler * Remove tools/cw contents
22 lines
626 B
Meson
22 lines
626 B
Meson
# 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)
|