Skip to content

Commit

Permalink
exclude clang and sourcekitd headers and module maps from Package.swift
Browse files Browse the repository at this point in the history
since Swift Package Manager won't support those mixed in with source
in the near future.
  • Loading branch information
jpsim committed Jan 16, 2017
1 parent e027f64 commit 686d452
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,9 @@ let package = Package(
.Package(url: "https://github.com/norio-nomura/Clang_C.git", majorVersion: 1),
.Package(url: "https://github.com/norio-nomura/SourceKit.git", majorVersion: 1),
],
exclude: ["Tests/SourceKittenFrameworkTests/Fixtures"]
exclude: [
"Source/SourceKittenFramework/clang-c",
"Source/SourceKittenFramework/sourcekitd.h",
"Tests/SourceKittenFrameworkTests/Fixtures",
]
)

0 comments on commit 686d452

Please sign in to comment.