Advertisement
wellthatsucks

Untitled

May 2nd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. 'adpcm_g722_decoder' : files(['g722dsp.asm',]),
  2. 'adpcm_g722_encoder' : files(['g722dsp.asm',]),
  3.  
  4. later:
  5.  
  6. asm_gen = generator(x86asm,
  7. output : '@BASENAME@.o',
  8. arguments : [
  9. '-f', asm_format,
  10. '-i', asm_inc,
  11. '@INPUT@',
  12. '-o', '@OUTPUT@'] + asm_args)
  13.  
  14. later:
  15.  
  16. both components are enabled, x86asm_sources thus contains [..., 'g722dsp.asm', 'g722dsp.asm', ...]
  17.  
  18. sources += asm_gen.process(x86asm_sources)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement