Skip to content

Commit

Permalink
Fix SPM support.
Browse files Browse the repository at this point in the history
  • Loading branch information
synthemesc committed Jul 30, 2022
1 parent 6523131 commit 77f0423
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ import PackageDescription

let package = Package(
name: "CountryCode",
platforms: [
.iOS(.v8)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
Expand All @@ -21,7 +24,10 @@ let package = Package(
.target(
name: "CountryCode",
dependencies: [],
path: "CountryPicker"),
path: "CountryPicker",
resources: [
.copy("Assets")]
),
.testTarget(
name: "CountryCodeTests",
dependencies: ["CountryCode"]),
Expand Down

0 comments on commit 77f0423

Please sign in to comment.