Some stuff

This commit is contained in:
2026-01-01 22:48:26 +01:00
parent 823abf84b4
commit 4f0c4cf4f6
3 changed files with 15 additions and 4 deletions

View File

@@ -2,11 +2,12 @@ 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)
executable('daw-project', 'src/engine/main.cpp',
dependencies: [jack_dep],
install: true)
#executable('daw-project', 'src/engine/main.cpp',
# dependencies: [jack_dep, test_dep],
# install: true)
executable('daw-gui', 'src/gui/main.cpp',
dependencies: [qt_dep],
dependencies: [qt_dep, test_dep],
install: true)