diff options
author | Neil Hodgson <nyamatongwe@gmail.com> | 2016-11-27 13:01:45 +1100 |
---|---|---|
committer | Neil Hodgson <nyamatongwe@gmail.com> | 2016-11-27 13:01:45 +1100 |
commit | 6bed4e4aa02025e1bd0c294a44c9371fb6b176f1 (patch) | |
tree | df268915d6db14803088a01373f52798f7e382cf /cocoa/ScintillaFramework/module.modulemap | |
parent | 5cb3c498162ad434b35980155427fdb6c0555885 (diff) | |
download | scintilla-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.modulemap | 10 |
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 * } +} |