Skip to content

Commit 630df1b

Browse files
committed
Add package.swift
1 parent 6fc9a29 commit 630df1b

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

Package.swift

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// swift-tools-version:5.0
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "nlohmann_json",
7+
products: [
8+
.library(
9+
name: "nlohmann_json",
10+
targets: ["nlohmann_json"]
11+
)
12+
],
13+
14+
targets: [
15+
.target(
16+
name: "nanopb",
17+
path: ".",
18+
sources: [
19+
],
20+
publicHeadersPath: "single_include",
21+
),
22+
]
23+
)

0 commit comments

Comments
 (0)