summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2020-09-18 14:03:27 -0400
committerJoel Fischer <joeljfischer@gmail.com>2020-09-18 14:03:27 -0400
commitd3cb7b85c7957f76a2e4b06be3e5bb407709c994 (patch)
tree1a0e7c4956eafdd3bef4860e5d3ba1a5c070202e
parent8302bfc0888415d0e31e800e5fe3f0520a19b1f1 (diff)
downloadsdl_ios-d3cb7b85c7957f76a2e4b06be3e5bb407709c994.tar.gz
Fix ordering of parameters
-rw-r--r--Package.swift4
1 files changed, 2 insertions, 2 deletions
diff --git a/Package.swift b/Package.swift
index ace618814..345db023f 100644
--- a/Package.swift
+++ b/Package.swift
@@ -28,7 +28,6 @@ let package = Package(
.target(
name: "BiSON",
path: "bson_c_lib/src",
- publicHeadersPath: ".",
exclude: [
"Makefile.am",
"Makefile.in",
@@ -38,7 +37,8 @@ let package = Package(
"emhashmap/Makefile.am",
"emhashmap/runtests.sh",
"emhashmap/tests.c"
- ]
+ ],
+ publicHeadersPath: "."
)
]
)