You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spdlog/Package.swift

33 lines
659 B
Swift

// swift-tools-version: 5.8
import PackageDescription
let package = Package(
name: "spdlog",
platforms: [
.macOS(.v11),
.iOS(.v13)
],
products: [
.library(
name: "spdlog",
targets: ["spdlog"]),
],
targets: [
.target(name: "spdlog",
path: "",
exclude:[
],
sources:[
"src"
],
publicHeadersPath:"include",
cSettings: [
.define("SPDLOG_COMPILED_LIB"),
]
)
],
cxxLanguageStandard: .cxx20
)