Skip to content

Commit

Permalink
SPM: use static libraries for the time being
Browse files Browse the repository at this point in the history
When cassowary is used in Swift/Win32, we end up with duplicate definitions currently.  Avoid a shared library as a workaround.
  • Loading branch information
compnerd authored Aug 28, 2023
1 parent ed5059b commit 27525d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import PackageDescription
let cassowary = Package(
name: "cassowary",
products: [
.library(name: "cassowary", type: .dynamic, targets: ["Cassowary"]),
.library(name: "cassowary", targets: ["Cassowary"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-collections.git",
Expand Down

0 comments on commit 27525d4

Please sign in to comment.