darling-JavaScriptCore/JavaScriptCore.modulemap
2020-08-29 15:28:47 -04:00

19 lines
423 B
Plaintext

framework module JavaScriptCore {
umbrella header "JavaScriptCore.h"
export *
module * {
export *
}
explicit module JSVirtualMachine {
// FIXME: 32-bit x86 is a poor way to say "fragile Objective-C ABI"
requires x86_32
exclude header "JSValue.h"
exclude header "JSContext.h"
exclude header "JSExport.h"
exclude header "JSManagedValue.h"
exclude header "JSVirtualMachine.h"
}
}