Skip to content

Commit 8132d54

Browse files
committed
Reorginize Package
1 parent bc761bf commit 8132d54

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Package.swift

+1-5
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,11 @@ func getTargets() -> [Target] {
8585
if hasEnvironmentVariable("CLI_BUILD") {
8686
let (cFlags, linkFlags, _) = try! getLLVMConfig()
8787
let customSystemLibrary: Target = .systemLibrary(
88-
name: "CLLVM",
89-
path: "llvm-api/CLLVM"
88+
name: "CLLVM"
9089
)
9190
let llvmTarget: Target = .target(
9291
name: "LLVM",
9392
dependencies: ["CLLVM"],
94-
// path: "llvm-api/LLVM",
9593
cSettings: [
9694
.unsafeFlags(cFlags),
9795
],
@@ -103,13 +101,11 @@ func getTargets() -> [Target] {
103101
} else {
104102
let customSystemLibrary: Target = .systemLibrary(
105103
name: "CLLVM",
106-
// path: "llvm-api/CLLVM",
107104
pkgConfig: "llvm"
108105
)
109106
let llvmTarget: Target = .target(
110107
name: "LLVM",
111108
dependencies: ["CLLVM"]
112-
// path: "llvm-api/LLVM"
113109
)
114110
return [customSystemLibrary, llvmTarget]
115111
}

0 commit comments

Comments
 (0)