-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathPackage.swift
More file actions
23 lines (22 loc) · 675 Bytes
/
Package.swift
File metadata and controls
23 lines (22 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "Assimp",
products: [
.library(name: "Assimp",
type: .static,
targets: ["Assimp"])
],
targets: [
.target(name: "Assimp",
dependencies: ["CAssimp"]),
.testTarget(name: "AssimpTests", dependencies: ["Assimp"]),
.systemLibrary(name: "CAssimp",
path: "Sources/CAssimp",
pkgConfig: "assimp",
providers: [
.brew(["assimp"]),
.apt(["libassimp-dev"])
])
]
)