24 lines
502 B
Swift
24 lines
502 B
Swift
// swift-tools-version:5.3
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "AAInfographics",
|
|
platforms: [
|
|
.iOS(.v10),
|
|
.macOS(.v10_13)
|
|
],
|
|
products: [
|
|
.library(name: "AAInfographics", targets: ["AAInfographics"])
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "AAInfographics",
|
|
path: "AAInfographics",
|
|
exclude: ["Info.plist", "ProjectBundlePathLoader.swift"],
|
|
resources: [
|
|
.copy("AAJSFiles.bundle")
|
|
]
|
|
)
|
|
]
|
|
)
|