2023-03-19 07:41:51 +00:00
|
|
|
// swift-tools-version:5.5
|
2021-10-27 16:47:08 +00:00
|
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
|
|
|
|
import PackageDescription
|
|
|
|
|
|
|
|
let package = Package(
|
2022-06-23 21:31:01 +00:00
|
|
|
name: "PassepartoutLibrary",
|
2021-10-27 16:47:08 +00:00
|
|
|
platforms: [
|
2023-03-19 07:41:51 +00:00
|
|
|
.iOS(.v15), .macOS(.v12)
|
2021-10-27 16:47:08 +00:00
|
|
|
],
|
|
|
|
products: [
|
|
|
|
// Products define the executables and libraries a package produces, and make them visible to other packages.
|
|
|
|
.library(
|
2022-06-23 21:31:01 +00:00
|
|
|
name: "PassepartoutLibrary",
|
|
|
|
targets: ["PassepartoutLibrary"]),
|
2021-10-27 16:47:08 +00:00
|
|
|
.library(
|
2022-04-12 13:09:14 +00:00
|
|
|
name: "OpenVPNAppExtension",
|
|
|
|
targets: ["OpenVPNAppExtension"]),
|
|
|
|
.library(
|
|
|
|
name: "WireGuardAppExtension",
|
|
|
|
targets: ["WireGuardAppExtension"])
|
2021-10-27 16:47:08 +00:00
|
|
|
],
|
|
|
|
dependencies: [
|
|
|
|
// Dependencies declare other packages that this package depends on.
|
|
|
|
// .package(url: /* package url */, from: "1.0.0"),
|
2023-07-06 10:09:59 +00:00
|
|
|
.package(name: "TunnelKit", url: "https://github.com/passepartoutvpn/tunnelkit", from: "6.1.1"),
|
|
|
|
// .package(name: "TunnelKit", url: "https://github.com/passepartoutvpn/tunnelkit", .revision("d69899bbc032dac0a7218ba160d3a85c16cd8506")),
|
2022-04-12 13:25:38 +00:00
|
|
|
// .package(name: "TunnelKit", path: "../../tunnelkit"),
|
2022-04-12 13:09:14 +00:00
|
|
|
.package(url: "https://github.com/zoul/generic-json-swift", from: "2.0.0"),
|
|
|
|
.package(url: "https://github.com/SwiftyBeaver/SwiftyBeaver", from: "1.9.0")
|
2021-10-27 16:47:08 +00:00
|
|
|
],
|
|
|
|
targets: [
|
|
|
|
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
|
|
|
|
// Targets can depend on other targets in this package, and on products in packages this package depends on.
|
2023-05-24 16:19:47 +00:00
|
|
|
|
|
|
|
// MARK: Implementations
|
|
|
|
|
2021-10-27 16:47:08 +00:00
|
|
|
.target(
|
2022-06-23 21:31:01 +00:00
|
|
|
name: "PassepartoutLibrary",
|
|
|
|
dependencies: [
|
2023-05-24 16:19:47 +00:00
|
|
|
"PassepartoutVPNImpl",
|
|
|
|
"PassepartoutProvidersImpl"
|
2022-06-23 21:31:01 +00:00
|
|
|
]),
|
|
|
|
.target(
|
2023-05-24 16:19:47 +00:00
|
|
|
name: "PassepartoutVPNImpl",
|
2021-10-27 16:47:08 +00:00
|
|
|
dependencies: [
|
2023-05-24 16:19:47 +00:00
|
|
|
"PassepartoutVPN",
|
|
|
|
"SwiftyBeaver",
|
2022-06-23 21:31:01 +00:00
|
|
|
.product(name: "TunnelKitLZO", package: "TunnelKit")
|
2023-03-19 07:41:51 +00:00
|
|
|
],
|
|
|
|
resources: [
|
2023-05-24 16:19:47 +00:00
|
|
|
.process("Data/Profiles.xcdatamodeld")
|
2022-06-23 21:31:01 +00:00
|
|
|
]),
|
|
|
|
.target(
|
2023-05-24 16:19:47 +00:00
|
|
|
name: "PassepartoutProvidersImpl",
|
2022-06-23 21:31:01 +00:00
|
|
|
dependencies: [
|
2023-05-24 16:19:47 +00:00
|
|
|
"PassepartoutProviders",
|
2022-06-23 21:31:01 +00:00
|
|
|
"PassepartoutServices"
|
2023-03-19 07:41:51 +00:00
|
|
|
],
|
|
|
|
resources: [
|
2023-05-24 16:19:47 +00:00
|
|
|
.copy("API"),
|
|
|
|
.process("Data/Providers.xcdatamodeld")
|
2022-06-23 21:31:01 +00:00
|
|
|
]),
|
2023-05-24 16:19:47 +00:00
|
|
|
|
|
|
|
// MARK: Interfaces
|
|
|
|
|
2022-06-23 21:31:01 +00:00
|
|
|
.target(
|
2023-05-24 16:19:47 +00:00
|
|
|
name: "PassepartoutVPN",
|
2022-06-23 21:31:01 +00:00
|
|
|
dependencies: [
|
2023-05-24 16:19:47 +00:00
|
|
|
"PassepartoutProviders",
|
2021-11-06 20:50:31 +00:00
|
|
|
.product(name: "TunnelKit", package: "TunnelKit"),
|
2023-07-02 10:51:50 +00:00
|
|
|
.product(name: "TunnelKitOpenVPN", package: "TunnelKit"),
|
|
|
|
.product(name: "TunnelKitWireGuard", package: "TunnelKit"),
|
2023-05-24 16:19:47 +00:00
|
|
|
]),
|
|
|
|
.target(
|
|
|
|
name: "PassepartoutProviders",
|
|
|
|
dependencies: [
|
|
|
|
"PassepartoutCore"
|
2022-04-12 13:09:14 +00:00
|
|
|
]),
|
|
|
|
.target(
|
|
|
|
name: "PassepartoutServices",
|
2022-06-23 21:31:01 +00:00
|
|
|
dependencies: [
|
2023-05-24 16:19:47 +00:00
|
|
|
"PassepartoutCore"
|
2021-10-27 16:47:08 +00:00
|
|
|
]),
|
|
|
|
.target(
|
2023-05-24 16:19:47 +00:00
|
|
|
name: "PassepartoutCore",
|
2022-04-12 13:09:14 +00:00
|
|
|
dependencies: [
|
2023-05-28 07:56:51 +00:00
|
|
|
.product(name: "GenericJSON", package: "generic-json-swift")
|
2022-04-12 13:09:14 +00:00
|
|
|
]),
|
2023-05-24 16:19:47 +00:00
|
|
|
|
|
|
|
// MARK: App extensions
|
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
.target(
|
|
|
|
name: "OpenVPNAppExtension",
|
2021-10-27 16:47:08 +00:00
|
|
|
dependencies: [
|
2021-11-06 20:50:31 +00:00
|
|
|
.product(name: "TunnelKitOpenVPNAppExtension", package: "TunnelKit"),
|
2021-10-27 16:47:08 +00:00
|
|
|
.product(name: "TunnelKitLZO", package: "TunnelKit")
|
|
|
|
]),
|
2022-04-12 13:09:14 +00:00
|
|
|
.target(
|
|
|
|
name: "WireGuardAppExtension",
|
|
|
|
dependencies: [
|
|
|
|
.product(name: "TunnelKitWireGuardAppExtension", package: "TunnelKit")
|
|
|
|
]),
|
2023-05-24 16:19:47 +00:00
|
|
|
|
|
|
|
// MARK: Tests
|
|
|
|
|
2022-10-30 10:53:53 +00:00
|
|
|
.testTarget(
|
|
|
|
name: "PassepartoutVPNTests",
|
2023-05-24 16:19:47 +00:00
|
|
|
dependencies: ["PassepartoutVPNImpl"]),
|
2022-04-12 13:09:14 +00:00
|
|
|
.testTarget(
|
|
|
|
name: "PassepartoutProvidersTests",
|
2023-05-24 16:19:47 +00:00
|
|
|
dependencies: ["PassepartoutProvidersImpl"]),
|
2022-10-30 10:53:53 +00:00
|
|
|
.testTarget(
|
|
|
|
name: "PassepartoutCoreTests",
|
2023-05-24 16:19:47 +00:00
|
|
|
dependencies: ["PassepartoutCore"],
|
2021-10-27 16:47:08 +00:00
|
|
|
resources: [
|
|
|
|
.process("Resources")
|
|
|
|
])
|
|
|
|
]
|
|
|
|
)
|