-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathPackage.swift
57 lines (56 loc) · 2.72 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "geos",
platforms: [.iOS(.v9), .macOS("10.9"), .tvOS(.v9), .watchOS(.v2)],
products: [
.library(
name: "geos",
type: .dynamic,
targets: ["geos"]),
],
targets: [
.target(
name: "geos",
exclude: ["include/geos/geom/PrecisionModel.inl",
"include/geos/geomgraph/Depth.inl",
"include/geos/geom/Coordinate.inl",
"include/geos/geomgraph/index/SegmentIntersector.inl",
"include/geos/operation/overlayng/Edge.inl",
"include/geos/noding/snapround/HotPixel.inl",
"include/geos/noding/SegmentNode.inl",
"include/geos/geomgraph/TopologyLocation.inl",
"include/geos/operation/overlayng/OverlayEdge.inl",
"include/geos/io/ByteOrderDataInStream.inl",
"include/geos/geomgraph/GeometryGraph.inl",
"include/geos/algorithm/LineIntersector.inl",
"include/geos/noding/NodingIntersectionFinder.inl",
"include/geos/geom/GeometryFactory.inl",
"include/geos/geom/Envelope.inl",
"include/geos/operation/overlay/MinimalEdgeRing.inl",
"include/geos/geomgraph/DirectedEdge.inl",
"include/geos/noding/MCIndexNoder.inl",
"include/geos/geom/MultiPolygon.inl",
"include/geos/io/WKTReader.inl",
"include/geos/algorithm/ConvexHull.inl",
"include/geos/operation/overlayng/EdgeKey.inl",
"include/geos/noding/BasicSegmentString.inl",
"include/geos/noding/NodedSegmentString.inl",
"include/geos/geom/LineSegment.inl",
"include/geos/geomgraph/Label.inl",
"include/geos/operation/overlayng/OverlayLabel.inl",
"include/geos/algorithm/CGAlgorithmsDD.inl",
"include/geos/geom/GeometryCollection.inl",
"include/geos/geom/Quadrant.inl",
"include/geos/geom/MultiLineString.inl",
"include/geos/geom/CoordinateArraySequenceFactory.inl"],
publicHeadersPath: "public",
cxxSettings: [
.define("USE_UNSTABLE_GEOS_CPP_API"),
.define("GEOS_INLINE"),
.define("NDEBUG"),
.headerSearchPath("include"),
.headerSearchPath("src/deps")])
],
cxxLanguageStandard: .cxx11
)