Change the conanfile

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
2025-11-16 20:55:28 +01:00
parent 4aa1a38ba3
commit f6586bef83
8 changed files with 81 additions and 63 deletions

View File

@@ -1,6 +1,8 @@
project('daw-exp ', 'cpp')
qt6 = import('qt6')
qt_dep = dependency('qt6', modules: ['Core', 'Widgets'])
exe = executable('myapp', 'src/main.cpp',
dependencies: [qt_dep],
jack_dep = dependency('jack', required : true)
executable('daw-project', 'src/main.cpp',
dependencies: [qt_dep, jack_dep],
install: true)