jadeite/meson.build
2024-02-06 00:05:07 +02:00

23 lines
440 B
Meson

project('jadeite', 'c', version: '3.1.1')
nasm = find_program('nasm')
gen_res = find_program('gen_resources.sh')
# Generator for compiling asm files
asm_gen = generator(
nasm,
output: '@BASENAME@.bin',
arguments: [
'@EXTRA_ARGS@',
'-f', 'bin',
'@INPUT@',
'-o', '@OUTPUT@'
]
)
# Payload that gets injected into the game
subdir('game_payload')
# The injector exe and dll
subdir('injector')