We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 5e48051Copy full SHA for 5e48051
.gitignore
@@ -0,0 +1,4 @@
1
+.DS_Store
2
+/.build
3
+/Packages
4
+/*.xcodeproj
Package.swift
@@ -0,0 +1,6 @@
+import PackageDescription
+
+let package = Package(
+ name: "cclang",
5
+ pkgConfig: "cclang"
6
+)
module.modulemap
+module cclang [system] {
+ header "shim.h"
+ export *
+}
shim.h
@@ -0,0 +1,12 @@
+#include <clang-c/Platform.h>
+#ifdef I // For some reason this is defined
+#undef I
+#endif
7
+#include <clang-c/Index.h>
8
+#include <clang-c/BuildSystem.h>
9
+#include <clang-c/CXErrorCode.h>
10
+#include <clang-c/Documentation.h>
11
+#include <clang-c/CXCompilationDatabase.h>
12
+#include <clang-c/CXString.h>
0 commit comments