-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
27 lines (26 loc) · 1.37 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// swift-tools-version: 5.7
import PackageDescription
let package = Package(
name: "MiniApp",
products: [
.library(name: "MiniApp", targets: ["MiniApp"]),
.library(name: "MiniAppManifest", targets: ["MiniAppManifest"]),
.library(name: "MiniAppPackaging", targets: ["MiniAppPackaging"]),
.library(name: "MiniAppLifecycle", targets: ["MiniAppLifecycle"]),
.library(name: "MiniAppAddressing", targets: ["MiniAppAddressing"]),
],
dependencies: [
],
targets: [
.target(name: "MiniApp", dependencies: ["MiniAppManifest", "MiniAppPackaging", "MiniAppLifecycle", "MiniAppAddressing"], resources: [.process("Resources")]),
.testTarget(name: "MiniAppTests", dependencies: ["MiniApp"], resources: [.copy("miniapp-tests")]),
.target(name: "MiniAppManifest", dependencies: []),
.testTarget(name: "MiniAppManifestTests", dependencies: ["MiniAppManifest"]),
.target(name: "MiniAppPackaging", dependencies: []),
.testTarget(name: "MiniAppPackagingTests", dependencies: ["MiniAppPackaging"]),
.target(name: "MiniAppLifecycle", dependencies: []),
.testTarget(name: "MiniAppLifecycleTests", dependencies: ["MiniAppLifecycle"]),
.target(name: "MiniAppAddressing", dependencies: []),
.testTarget(name: "MiniAppAddressingTests", dependencies: ["MiniAppAddressing"]),
]
)