Skip to content

Commit e930ecc

Browse files
authored
Merge pull request #8 from RougeWare/feature/5-Dynamic-Library
Added dynamic library whose name is a valid bundle identifier
2 parents 8647336 + e0c169a commit e930ecc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Package.swift

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,16 @@ let package = Package(
1212
name: "OptionalTools",
1313
targets: ["OptionalTools"]),
1414

15+
// DEPRECATED: Does not play nice with App Store requirements
1516
.library(
1617
name: "OptionalTools_dynamic",
1718
type: .dynamic,
1819
targets: ["OptionalTools"]),
20+
21+
.library(
22+
name: "OptionalToolsDynamic",
23+
type: .dynamic,
24+
targets: ["OptionalTools"]),
1925
],
2026

2127
dependencies: [

0 commit comments

Comments
 (0)