Build to executables

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
2025-11-16 21:45:14 +01:00
parent cd93853df1
commit e5855d5715
6 changed files with 31 additions and 137 deletions

View File

@@ -3,6 +3,10 @@ project('daw-exp ', 'cpp')
qt_dep = dependency('qt6', modules: ['Core', 'Widgets'])
jack_dep = dependency('jack', required : true)
executable('daw-project', 'src/main.cpp',
dependencies: [qt_dep, jack_dep],
executable('daw-project', 'src/engine/main.cpp',
dependencies: [jack_dep],
install: true)
executable('daw-gui', 'src/gui/main.cpp',
dependencies: [qt_dep],
install: true)