aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/ScintillaFramework/module.modulemap
diff options
context:
space:
mode:
authorNeil Hodgson <nyamatongwe@gmail.com>2016-11-27 13:01:45 +1100
committerNeil Hodgson <nyamatongwe@gmail.com>2016-11-27 13:01:45 +1100
commit6bed4e4aa02025e1bd0c294a44c9371fb6b176f1 (patch)
treedf268915d6db14803088a01373f52798f7e382cf /cocoa/ScintillaFramework/module.modulemap
parent5cb3c498162ad434b35980155427fdb6c0555885 (diff)
downloadscintilla-mirror-6bed4e4aa02025e1bd0c294a44c9371fb6b176f1.tar.gz
Added module map to enable use of Scintilla from Swift.
Diffstat (limited to 'cocoa/ScintillaFramework/module.modulemap')
-rw-r--r--cocoa/ScintillaFramework/module.modulemap10
1 files changed, 10 insertions, 0 deletions
diff --git a/cocoa/ScintillaFramework/module.modulemap b/cocoa/ScintillaFramework/module.modulemap
new file mode 100644
index 000000000..d09ce2e3b
--- /dev/null
+++ b/cocoa/ScintillaFramework/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 * }
+}