json/Package.swift
2023-06-19 07:28:56 +03:00

23 lines
581 B
Swift

// swift-tools-version: 5.8
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "nlohmann-json",
platforms: [
.iOS(.v11), .macOS(.v10_13), .tvOS(.v11), .watchOS(.v4)
],
products: [
.library(name: "nlohmann-json", targets: ["nlohmann-json"])
],
targets: [
.target(
name: "nlohmann-json",
path: "single_include/nlohmann",
publicHeadersPath: "."
)
],
cxxLanguageStandard: .cxx11
)