aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/Scintilla/module.modulemap
diff options
context:
space:
mode:
authorNeil Hodgson <nyamatongwe@gmail.com>2020-05-23 20:14:24 +1000
committerNeil Hodgson <nyamatongwe@gmail.com>2020-05-23 20:14:24 +1000
commiteaaf36ec499634bcc72b306d9a4da70ea5af43bd (patch)
treeddf6134d01d171b373802fc865cdb41f7e0936dd /cocoa/Scintilla/module.modulemap
parentbd44769a71bd88fbef5532e11d529a5f7bb0dfec (diff)
downloadscintilla-mirror-eaaf36ec499634bcc72b306d9a4da70ea5af43bd.tar.gz
Add new project that builds a Scintilla framework with no lexers.
Diffstat (limited to 'cocoa/Scintilla/module.modulemap')
-rw-r--r--cocoa/Scintilla/module.modulemap10
1 files changed, 10 insertions, 0 deletions
diff --git a/cocoa/Scintilla/module.modulemap b/cocoa/Scintilla/module.modulemap
new file mode 100644
index 000000000..d09ce2e3b
--- /dev/null
+++ b/cocoa/Scintilla/module.modulemap
@@ -0,0 +1,10 @@
+framework module Scintilla {
+ umbrella header "ScintillaView.h"
+ module InfoBar {
+ header "InfoBar.h"
+ }
+ // ILexer.h is not included as Swift doesn't yet interoperate with C++
+ exclude header "ILexer.h"
+ export *
+ module * { export * }
+}