mirror of https://github.com/mono/CppSharp.git
Browse Source
* Implement support for properties in Emscripten generator. * CLI: Fix option validation to check for valid Emscripten platform. * Ignore functions returning tag types for now in JS generation. * Use a Lua bindings spec file for Emscripten tests. * Improve JS testing scripts. * Only run packing step for release CI builds.main
14 changed files with 302 additions and 96 deletions
@ -0,0 +1,23 @@
@@ -0,0 +1,23 @@
|
||||
generator "emscripten" |
||||
platform "emscripten" |
||||
architecture "wasm32" |
||||
|
||||
includedirs |
||||
{ |
||||
"..", |
||||
"../../include", |
||||
} |
||||
|
||||
output "gen" |
||||
|
||||
module "tests" |
||||
namespace "test" |
||||
headers |
||||
{ |
||||
"Builtins.h", |
||||
"Classes.h", |
||||
"Classes2.h", |
||||
"Delegates.h", |
||||
"Enums.h", |
||||
"Overloads.h" |
||||
} |
Loading…
Reference in new issue