Initial commit
This commit is contained in:
21
meson.build
Normal file
21
meson.build
Normal file
@ -0,0 +1,21 @@
|
||||
project('jadeite', 'c', version: '1.0.0')
|
||||
|
||||
nasm = find_program('nasm')
|
||||
gen_res = find_program('gen_resources.sh')
|
||||
|
||||
# Generator for compiling asm files
|
||||
asm_gen = generator(
|
||||
nasm,
|
||||
output: '@BASENAME@.bin',
|
||||
arguments: [
|
||||
'-f', 'bin',
|
||||
'@INPUT@',
|
||||
'-o', '@OUTPUT@'
|
||||
]
|
||||
)
|
||||
|
||||
# Payload that gets injected into the game
|
||||
subdir('game_payload')
|
||||
|
||||
# The injector exe and dll
|
||||
subdir('injector')
|
||||
Reference in New Issue
Block a user