mirror of
https://github.com/whoeevee/EeveeSpotifyReborn.git
synced 2026-01-08 23:23:20 +00:00
89 lines
2.5 KiB
Swift
89 lines
2.5 KiB
Swift
// swift-tools-version:5.2
|
|
|
|
import PackageDescription
|
|
import Foundation
|
|
|
|
let projectDir = URL(fileURLWithPath: #filePath).deletingLastPathComponent()
|
|
|
|
@dynamicMemberLookup struct TheosConfiguration {
|
|
private let dict: [String: String]
|
|
init(at path: String) {
|
|
let configURL = URL(fileURLWithPath: path, relativeTo: projectDir)
|
|
guard let infoString = try? String(contentsOf: configURL) else {
|
|
fatalError("""
|
|
Could not find Theos SPM config. Have you run `make spm` yet?
|
|
""")
|
|
}
|
|
let pairs = infoString.split(separator: "\n").map {
|
|
$0.split(
|
|
separator: "=", maxSplits: 1,
|
|
omittingEmptySubsequences: false
|
|
).map(String.init)
|
|
}.map { ($0[0], $0[1]) }
|
|
dict = Dictionary(uniqueKeysWithValues: pairs)
|
|
}
|
|
subscript(
|
|
key: String,
|
|
or defaultValue: @autoclosure () -> String? = nil
|
|
) -> String {
|
|
if let value = dict[key] {
|
|
return value
|
|
} else if let def = defaultValue() {
|
|
return def
|
|
} else {
|
|
fatalError("""
|
|
Could not get value of key '\(key)' from Theos SPM config. \
|
|
Try running `make spm` again.
|
|
""")
|
|
}
|
|
}
|
|
subscript(dynamicMember key: String) -> String { self[key] }
|
|
}
|
|
let conf = TheosConfiguration(at: ".theos/spm_config")
|
|
|
|
let theosPath = conf.theos
|
|
let sdk = conf.sdk
|
|
let resourceDir = conf.swiftResourceDir
|
|
let deploymentTarget = conf.deploymentTarget
|
|
let triple = "arm64-apple-ios\(deploymentTarget)"
|
|
|
|
let libFlags: [String] = [
|
|
"-F\(theosPath)/vendor/lib", "-F\(theosPath)/lib",
|
|
"-I\(theosPath)/vendor/include", "-I\(theosPath)/include"
|
|
]
|
|
|
|
let cFlags: [String] = libFlags + [
|
|
"-target", triple, "-isysroot", sdk,
|
|
"-Wno-unused-command-line-argument", "-Qunused-arguments",
|
|
]
|
|
|
|
let cxxFlags: [String] = [
|
|
]
|
|
|
|
let swiftFlags: [String] = libFlags + [
|
|
"-target", triple, "-sdk", sdk, "-resource-dir", resourceDir,
|
|
]
|
|
|
|
let package = Package(
|
|
name: "EeveeSpotify",
|
|
platforms: [.iOS(deploymentTarget)],
|
|
products: [
|
|
.library(
|
|
name: "EeveeSpotify",
|
|
targets: ["EeveeSpotify"]
|
|
),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "EeveeSpotifyC",
|
|
cSettings: [.unsafeFlags(cFlags)],
|
|
cxxSettings: [.unsafeFlags(cxxFlags)]
|
|
),
|
|
.target(
|
|
name: "EeveeSpotify",
|
|
dependencies: ["EeveeSpotifyC"],
|
|
swiftSettings: [.unsafeFlags(swiftFlags)]
|
|
),
|
|
]
|
|
)
|