mirror of https://github.com/gabime/spdlog.git
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.
45 lines
935 B
Swift
45 lines
935 B
Swift
// swift-tools-version: 5.8
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "spdlog",
|
|
platforms: [
|
|
.iOS(.v12),
|
|
.macOS(.v10_14),
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "spdlog",
|
|
targets: ["spdlog"]),
|
|
],
|
|
dependencies: [
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "spdlog",
|
|
dependencies: [],
|
|
path: ".",
|
|
exclude: [
|
|
"bench",
|
|
"cmake",
|
|
"example",
|
|
"logos",
|
|
"tests",
|
|
"scripts",
|
|
],
|
|
sources: [
|
|
"src",
|
|
"include",
|
|
],
|
|
publicHeadersPath: "include",
|
|
cxxSettings: [
|
|
.headerSearchPath("spdlog"),
|
|
.define("SPDLOG_COMPILED_LIB"),
|
|
],
|
|
linkerSettings: []
|
|
),
|
|
],
|
|
cxxLanguageStandard: .cxx11
|
|
)
|