Files
RNG_Swift/Package.swift
2024-05-26 19:24:17 +01:00

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")
]
)
]
)