- Move .git from Baccarat/ to CasinoGames root - Add Blackjack game project - Add CasinoKit shared framework - Add .gitignore for Xcode/Swift projects - Add Agents.md and GAME_TEMPLATE.md documentation - Add CasinoGames.xcworkspace
33 lines
679 B
Swift
33 lines
679 B
Swift
// swift-tools-version: 6.0
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "CasinoKit",
|
|
defaultLocalization: "en",
|
|
platforms: [
|
|
.iOS(.v18),
|
|
.macOS(.v15)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "CasinoKit",
|
|
targets: ["CasinoKit"]
|
|
)
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "CasinoKit",
|
|
resources: [
|
|
.process("Resources")
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "CasinoKitTests",
|
|
dependencies: ["CasinoKit"]
|
|
)
|
|
]
|
|
)
|
|
|