examples : add whisper.swiftui demo app (#308)

* Add SwiftUI demo project.

* Add -DGGML_USE_ACCELERATE
This commit is contained in:
Digipom
2022-12-23 03:56:18 -05:00
committed by GitHub
parent 4c1fe0c813
commit 0f4227d9ee
18 changed files with 1023 additions and 0 deletions

View File

@ -0,0 +1,10 @@
import SwiftUI
@main
struct WhisperCppDemoApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}