16 lines
499 B
Meson
16 lines
499 B
Meson
project('daw-exp ', 'cpp')
|
|
|
|
qt_dep = dependency('qt6', modules: ['Core', 'Widgets'])
|
|
|
|
jack_dep = dependency('jack', required : true)
|
|
test_dep = dependency('conan-test-lib', required: true)
|
|
snd_dep = dependency('sndfile', required: true)
|
|
|
|
appleframeworks_dep = dependency('appleframeworks',
|
|
modules : ['AudioUnit', 'AudioToolbox', 'CoreAudio']
|
|
)
|
|
|
|
executable('daw-gui', 'src/main.cpp',
|
|
dependencies: [qt_dep, test_dep, snd_dep, appleframeworks_dep],
|
|
install: true)
|