32 lines
651 B
Swift
32 lines
651 B
Swift
|
|
// swift-tools-version: 5.8
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "fmt",
|
|
platforms: [
|
|
.macOS(.v11),
|
|
.iOS(.v13)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "fmt",
|
|
targets: ["fmt"]),
|
|
],
|
|
targets: [
|
|
.target(name: "fmt",
|
|
path: "",
|
|
exclude:[
|
|
// module library is not needed for swift package
|
|
"src/fmt.cc",
|
|
],
|
|
sources:[
|
|
"src"
|
|
],
|
|
publicHeadersPath:"include"
|
|
)
|
|
],
|
|
cxxLanguageStandard: .cxx20
|
|
)
|