Skip to content

Commit

Permalink
Provided explicit dynamic and static products in addition to the defa…
Browse files Browse the repository at this point in the history
…ults
  • Loading branch information
bok- committed Aug 24, 2020
1 parent 6c8df7b commit 67eb43c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,17 @@ let package = Package(
],

products: [
// Automatic
.library(name: "Vexil", targets: [ "Vexil" ]),
.library(name: "Vexillographer", targets: [ "Vexillographer" ]),

// Static
.library(name: "Vexil-static", type: .static, targets: [ "Vexil" ]),
.library(name: "Vexillographer-static", type: .static, targets: [ "Vexil", "Vexillographer" ]),

// Dynamic
.library(name: "Vexil-dynamic", type: .dynamic, targets: [ "Vexil" ]),
.library(name: "Vexillographer-dynamic", type: .dynamic, targets: [ "Vexillographer" ]),
],

dependencies: [
Expand Down

0 comments on commit 67eb43c

Please sign in to comment.