rtaudio hello world

This commit is contained in:
2026-06-06 16:40:30 -05:00
parent 989fe385de
commit 6c3e703adf
5 changed files with 174 additions and 3 deletions

View File

@@ -6,6 +6,7 @@
#include <QQmlContext>
#include "TimerComponent.hpp"
#include "synth/AudioEngine.hpp"
int main(int argc, char* argv[]) {
@@ -27,6 +28,10 @@ int main(int argc, char* argv[]) {
return -1;
}
// audio synthesizer doohickey
AudioEngine audioEngine = AudioEngine();
audioEngine.start();
// execute app
return app.exec();
}