Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,12 @@ let package = Package(
"GlobalStateExplorers/SystemLog/LLVM_LICENSE.TXT",
],
publicHeadersPath: "Headers",
cSettings: .headerSearchPaths + .warningFlags
cSettings: .headerSearchPaths + .warningFlags,
linkerSettings: [
.linkedFramework("CoreGraphics"),
.linkedLibrary("sqlite3"),
.linkedLibrary("z"),
]
)
],
// Required to compile FLEXSwiftInternal.mm
Expand All @@ -51,10 +56,10 @@ extension Array where Element == CSetting {
"-Wno-unsupported-availability-guard",
])]
}

return []
}

/// These are the header search paths needed for FLEX to compile, not
/// the headers used by projects linking against FLEX.
///
Expand Down