build(swift): declare header search path (#3474)

This commit is contained in:
Yuta Saito 2024-07-29 16:06:12 +09:00 committed by GitHub
parent cd3e561224
commit 0d00b6a1e6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -35,7 +35,8 @@ let package = Package(
"src/tree.c",
"src/query.c"
],
sources: ["src/lib.c"]),
sources: ["src/lib.c"],
cSettings: [.headerSearchPath("src")]),
],
cLanguageStandard: .c11
)