-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
49 lines (38 loc) · 1.23 KB
/
Copy pathPackage.swift
File metadata and controls
49 lines (38 loc) · 1.23 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// swift-tools-version: 6.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package_dependencies: [Package.Dependency] = [
.package(url: "https://github.com/py-swift/PySwiftKit", from: .init(313, 0, 0)),
//.package(url: "https://github.com/py-swift/PyFileGenerator", from: .init(0, 0, 1)),
.package(path: "/Volumes/CodeSSD/PythonSwiftGithub/PyFileGenerator")
// add other packages
]
let package_targets: [Target] = [
.target(
name: "PyCoreLocation",
dependencies: [
.product(name: "PySwiftKitBase", package: "PySwiftKit"),
// add other package products or internal targets
],
resources: [
],
swiftSettings: [
.swiftLanguageMode(.v5)
]
)
]
let package = Package(
name: "PyGps",
platforms: [
.iOS(.v13),
.macOS(.v11)
],
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "PyCoreLocation",
targets: ["PyCoreLocation"]),
],
dependencies: package_dependencies,
targets: package_targets
)