File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed
Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 1+ // swift-tools-version:5.1
2+
3+ import PackageDescription
4+
5+ let package = Package (
6+ name: " authentikClient " ,
7+ platforms: [
8+ . iOS( . v9) ,
9+ . macOS( . v10_11) ,
10+ . tvOS( . v9) ,
11+ . watchOS( . v3) ,
12+ ] ,
13+ products: [
14+ // Products define the executables and libraries produced by a package, and make them visible to other packages.
15+ . library(
16+ name: " authentikClient " ,
17+ targets: [ " authentikClient " ]
18+ ) ,
19+ . library(
20+ name: " OpenAPITransport " ,
21+ targets: [ " OpenAPITransport " ]
22+ ) ,
23+ ] ,
24+ targets: [
25+ // Targets are the basic building blocks of a package. A target can define a module or a test suite.
26+ // Targets can depend on other targets in this package, and on products in packages which this package depends on.
27+ . target(
28+ name: " authentikClient " ,
29+ dependencies: [ " OpenAPITransport " , ] ,
30+ path: " authentikClient/Sources "
31+ ) ,
32+ . target(
33+ name: " OpenAPITransport " ,
34+ dependencies: [ ] ,
35+ path: " OpenAPITransport/Sources "
36+ ) ,
37+ ]
38+ )
You can’t perform that action at this time.
0 commit comments