diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-12-07 15:34:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-07 15:34:33 +0100 |
commit | e20011b0da4af68ecb4b267e46c43e30004494b5 (patch) | |
tree | 5385cc395fc2f50f3a62aec6e16b34cb01f37760 /modules/gdnative/gdnative_library_editor_plugin.cpp | |
parent | 44a88244dee7e8996824aa29507e917b22ffccca (diff) | |
parent | dd9503dc1937e1469b2a6f8e145e80acbf2c7cbb (diff) |
Merge pull request #44076 from Faless/js/4.x_gdnative
[HTML5] Optional GDNative Support
Diffstat (limited to 'modules/gdnative/gdnative_library_editor_plugin.cpp')
-rw-r--r-- | modules/gdnative/gdnative_library_editor_plugin.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/gdnative/gdnative_library_editor_plugin.cpp b/modules/gdnative/gdnative_library_editor_plugin.cpp index f0f095ddf5..719fcbc927 100644 --- a/modules/gdnative/gdnative_library_editor_plugin.cpp +++ b/modules/gdnative/gdnative_library_editor_plugin.cpp @@ -308,11 +308,11 @@ GDNativeLibraryEditor::GDNativeLibraryEditor() { platform_android.library_extension = "*.so"; platforms["Android"] = platform_android; - // TODO: Javascript platform is not supported yet - // NativePlatformConfig platform_html5; - // platform_html5.name = "HTML5"; - // platform_html5.library_extension = "*.wasm"; - // platforms["Javascript"] = platform_html5; + NativePlatformConfig platform_html5; + platform_html5.name = "HTML5"; + platform_html5.entries.push_back("wasm32"); + platform_html5.library_extension = "*.wasm"; + platforms["HTML5"] = platform_html5; NativePlatformConfig platform_ios; platform_ios.name = "iOS"; |