45 lines
1.1 KiB
Swift
45 lines
1.1 KiB
Swift
// swift-tools-version: 5.6
|
|
|
|
// WARNING:
|
|
// This file is automatically generated.
|
|
// Do not edit it by hand because the contents will be replaced.
|
|
|
|
import PackageDescription
|
|
import AppleProductTypes
|
|
|
|
let package = Package(
|
|
name: "Splits (xcode)",
|
|
platforms: [
|
|
.iOS("15.2")
|
|
],
|
|
products: [
|
|
.iOSApplication(
|
|
name: "Splits (xcode)",
|
|
targets: ["AppModule"],
|
|
displayVersion: "1.0",
|
|
bundleVersion: "1",
|
|
appIcon: .asset("AppIcon"),
|
|
accentColor: .presetColor(.blue),
|
|
supportedDeviceFamilies: [
|
|
.pad,
|
|
.phone
|
|
],
|
|
supportedInterfaceOrientations: [
|
|
.portrait,
|
|
.landscapeRight,
|
|
.landscapeLeft,
|
|
.portraitUpsideDown(.when(deviceFamilies: [.pad]))
|
|
],
|
|
appCategory: .reference
|
|
)
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "AppModule",
|
|
path: ".",
|
|
resources: [
|
|
.process("Resources")
|
|
]
|
|
)
|
|
]
|
|
)
|