Skip to content

Commit

Permalink
Updated Swift Package
Browse files Browse the repository at this point in the history
  • Loading branch information
v57 committed Dec 13, 2018
1 parent 4b288b4 commit 8f80d5d
Showing 1 changed file with 5 additions and 16 deletions.
21 changes: 5 additions & 16 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,10 @@

import PackageDescription

let name = "secp256k1"

let package = Package(
name: "secp256k1",
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "secp256k1",
targets: ["secp256k1"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(name: "secp256k1", path: "secp256k1")
]
name: name,
products: [.library( name: name, targets: [name])],
targets: [.target(name: name, path: name)]
)

0 comments on commit 8f80d5d

Please sign in to comment.