Skip to content

Instantly share code, notes, and snippets.

@norio-nomura
Last active May 29, 2017 07:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save norio-nomura/eb9b59829275a3a073d5e9bdba715b0d to your computer and use it in GitHub Desktop.
Save norio-nomura/eb9b59829275a3a073d5e9bdba715b0d to your computer and use it in GitHub Desktop.
v4 manifest for SourceKitten
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "SourceKitten",
dependencies: [
.package(url: "https://github.com/Carthage/Commandant.git", from: "0.12.0"),
.package(url: "https://github.com/drmohundro/SWXMLHash.git", .branch("version-4.0-changes")),
.package(url: "https://github.com/jpsim/Yams.git", .branch("master")),
.package(url: "https://github.com/norio-nomura/Clang_C.git", from: "1.0.0"),
.package(url: "https://github.com/norio-nomura/SourceKit.git", from: "1.0.0"),
],
targets: [
.target(
name: "sourcekitten",
dependencies: [
"Commandant",
"SourceKittenFramework",
]
),
.target(
name: "SourceKittenFramework",
dependencies: [
"SWXMLHash",
"Yams",
],
exclude: [
"clang-c",
"sourcekitd.h",
]
),
.testTarget(
name: "SourceKittenFrameworkTests",
dependencies: [
"SourceKittenFramework"
],
exclude: [
"Fixtures",
]
)
],
swiftLanguageVersions: [3, 4]
)
@norio-nomura
Copy link
Author

Fetching https://github.com/Carthage/Commandant.git
Fetching https://github.com/drmohundro/SWXMLHash.git
Fetching https://github.com/jpsim/Yams.git
Fetching https://github.com/norio-nomura/Clang_C.git
Fetching https://github.com/norio-nomura/SourceKit.git
Fetching https://github.com/antitypical/Result.git
Cloning https://github.com/jpsim/Yams.git
Resolving https://github.com/jpsim/Yams.git at master
Cloning https://github.com/norio-nomura/SourceKit.git
Resolving https://github.com/norio-nomura/SourceKit.git at 1.0.1
Cloning https://github.com/antitypical/Result.git
Resolving https://github.com/antitypical/Result.git at 3.2.3
Cloning https://github.com/drmohundro/SWXMLHash.git
Resolving https://github.com/drmohundro/SWXMLHash.git at version-4.0-changes
Cloning https://github.com/norio-nomura/Clang_C.git
Resolving https://github.com/norio-nomura/Clang_C.git at 1.0.2
Cloning https://github.com/Carthage/Commandant.git
Resolving https://github.com/Carthage/Commandant.git at 0.12.0
Compile CYaml src/scanner.c
Compile CYaml src/writer.c
Compile CYaml src/reader.c
Compile CYaml src/parser.c
Compile CYaml src/loader.c
Compile CYaml src/emitter.c
Compile CYaml src/dumper.c
Compile CYaml src/api.c
Compile Swift Module 'SWXMLHash' (2 sources)
Compile Swift Module 'Result' (2 sources)
Compile Swift Module 'Yams' (13 sources)
Compile Swift Module 'Commandant' (10 sources)
Compile Swift Module 'SourceKittenFramework' (34 sources)
Compile Swift Module 'sourcekitten' (10 sources)
Linking ./.build/debug/sourcekitten
Program ended with exit code: 0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment