// swift-tools-version: 5.10 // Author: Simon-Pierre Boucher — contact@spboucher.ai // Forge Studio — native macOS GUI companion for the Forge LLM training // framework. SwiftPM is the canonical build system (zyquo-term pattern); // scripts/package-app.sh turns the executable into a .app bundle. import PackageDescription let package = Package( name: "ForgeStudio", platforms: [.macOS(.v14)], products: [ .executable(name: "ForgeStudio", targets: ["ForgeStudio"]) ], targets: [ .executableTarget( name: "ForgeStudio", path: "ForgeStudio" ), .testTarget( name: "ForgeStudioTests", dependencies: ["ForgeStudio"], path: "Tests" ), ] )