Assists music production by grouping standalone programs into sessions. Community version of "Non Session Manager".
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
513B

  1. project('new-session-manager', 'c', 'cpp', version : '1.3.0', license : 'GPLv3')
  2. liblodep = dependency('liblo') #and not 'lo'
  3. threaddep = dependency('threads')
  4. jackdep = dependency('jack') #and not 'libjack'
  5. executable('nsmd',
  6. sources: ['src/nsmd.cpp', 'src/debug.cpp', 'src/Endpoint.cpp', 'src/file.cpp', 'src/Thread.cpp'],
  7. dependencies: [liblodep, threaddep],
  8. install: true,
  9. )
  10. executable('jackpatch',
  11. 'src/jackpatch.c',
  12. dependencies: [liblodep, jackdep],
  13. install: true,
  14. )