mirror of
https://github.com/neon443/RNG_Swift.git
synced 2026-03-11 06:49:12 +00:00
47 lines
1.2 KiB
Swift
47 lines
1.2 KiB
Swift
// swift-tools-version: 5.9
|
|
|
|
// 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: "RNG",
|
|
platforms: [
|
|
.iOS("16.0")
|
|
],
|
|
products: [
|
|
.iOSApplication(
|
|
name: "RNG",
|
|
targets: ["AppModule"],
|
|
bundleIdentifier: "com.neon443.RNG",
|
|
teamIdentifier: "8626DL2GW3",
|
|
displayVersion: "1.0",
|
|
bundleVersion: "1",
|
|
appIcon: .placeholder(icon: .calculator),
|
|
accentColor: .presetColor(.blue),
|
|
supportedDeviceFamilies: [
|
|
.pad,
|
|
.phone
|
|
],
|
|
supportedInterfaceOrientations: [
|
|
.portrait,
|
|
.landscapeRight,
|
|
.landscapeLeft,
|
|
.portraitUpsideDown(.when(deviceFamilies: [.pad]))
|
|
],
|
|
appCategory: .utilities
|
|
)
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "AppModule",
|
|
path: ".",
|
|
swiftSettings: [
|
|
.enableUpcomingFeature("BareSlashRegexLiterals")
|
|
]
|
|
)
|
|
]
|
|
) |