meson.build 440 B

1234567891011121314151617181920212223
  1. project('jadeite', 'c', version: '4.0.0')
  2. nasm = find_program('nasm')
  3. gen_res = find_program('gen_resources.sh')
  4. # Generator for compiling asm files
  5. asm_gen = generator(
  6. nasm,
  7. output: '@BASENAME@.bin',
  8. arguments: [
  9. '@EXTRA_ARGS@',
  10. '-f', 'bin',
  11. '@INPUT@',
  12. '-o', '@OUTPUT@'
  13. ]
  14. )
  15. # Payload that gets injected into the game
  16. subdir('game_payload')
  17. # The injector exe and dll
  18. subdir('injector')