Initial commit
This commit is contained in:
21
injector/meson.build
Normal file
21
injector/meson.build
Normal file
@ -0,0 +1,21 @@
|
||||
# Assemble the payload that will be injected into the launcher
|
||||
inj_payload_bin = asm_gen.process('src/payload.asm')
|
||||
|
||||
# Embed it into the library
|
||||
inj_res_files = custom_target(
|
||||
'ipayload.[oh]',
|
||||
output: [ 'ipayload.o', 'ipayload.h' ],
|
||||
input: [ inj_payload_bin ],
|
||||
command: [ gen_res, './injector', '@OUTPUT0@', '@OUTPUT1@', '@INPUT@' ]
|
||||
)
|
||||
|
||||
# Main injector exe
|
||||
executable(
|
||||
'jadeite',
|
||||
'src/injector.c',
|
||||
inj_res_files,
|
||||
include_directories: 'include',
|
||||
name_prefix: ''
|
||||
)
|
||||
|
||||
subdir('launcher_payload')
|
||||
Reference in New Issue
Block a user