Some AI shite

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
2026-01-02 01:32:22 +01:00
parent 4f0c4cf4f6
commit 796fed5070
7 changed files with 121 additions and 89 deletions

View File

@@ -1,13 +1,15 @@
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)
#executable('daw-project', 'src/engine/main.cpp',
# dependencies: [jack_dep, test_dep],
# install: true)
appleframeworks_dep = dependency('appleframeworks',
modules : ['AudioUnit', 'AudioToolbox', 'CoreAudio']
)
executable('daw-gui', 'src/gui/main.cpp',
dependencies: [qt_dep, test_dep],
executable('daw-gui', 'src/main.cpp',
dependencies: [qt_dep, test_dep, snd_dep, appleframeworks_dep],
install: true)