Add preliminary JACK support

Add preliminary support for the JACK Audio Connection Kit.
Code needs to be heavily cleaned up and checked, this is just to establish
a first working configuration.
This commit is contained in:
OldShatterham
2020-04-22 01:53:05 +02:00
parent 3cc5e226aa
commit a47fd9ee3f
3 changed files with 210 additions and 1 deletions

View File

@@ -25,7 +25,8 @@ glava_dependencies = [
cc.find_library('dl'),
cc.find_library('m'),
cc.find_library('X11'),
cc.find_library('Xext')
cc.find_library('Xext'),
cc.find_library('jack')
]
if cc.get_id() == 'clang'