diff options
author | Alessandro Portale <[email protected]> | 2019-07-12 13:40:00 +0200 |
---|---|---|
committer | Alessandro Portale <[email protected]> | 2019-07-25 13:17:51 +0000 |
commit | b89ad81293bb11d9ed1936f82679bd520ae9e323 (patch) | |
tree | 77e15e5ba78202db2679a028f79a8bbe8e2bf94f /src/plugins/webassembly/webassembly.qbs | |
parent | 16a2241e7de4366fafe9a5df5b33a099fa2a4f60 (diff) |
WebAssembly: Initial commit
This change adds WebAssembly support in the shape of a plugin.
- Auto-detection of the emsdk toolchain
- Handling of "asmjs-unknown-emscripten" Abi
- Binary detection of WebAssembly libraries
- Auto-creation of a "WebAssembly runtime" device (with icon)
- Runconfiguration that launches the application via the "emrun"
tool which spawns a local web server and runs the application on
the chosen web browser.
Limitations:
- So far only tested on Windows/MinGW and Linux
- Not yet tested with Qt WebAssembly installation form the installer
Only tested with self-built Qt and manually added kit
- The attempt to launch an application via emrun, while a previous
application is still running, will fail. The reason is that the
web servers spawned by emrun listen to the same default port but
serve only the content of one application.
Possible solutions: We could either spawn the different web servers
with different ports, or we could use one single web server instance
which serves the whole default project location (home directory).
Task-number: QTCREATORBUG-21068
Task-number: QTCREATORBUG-22249
Change-Id: I1a16fbe52382d45c37e9bc624a943a6ca475fa09
Reviewed-by: Leena Miettinen <[email protected]>
Reviewed-by: Alessandro Portale <[email protected]>
Diffstat (limited to 'src/plugins/webassembly/webassembly.qbs')
-rw-r--r-- | src/plugins/webassembly/webassembly.qbs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/plugins/webassembly/webassembly.qbs b/src/plugins/webassembly/webassembly.qbs new file mode 100644 index 00000000000..2fa5a677253 --- /dev/null +++ b/src/plugins/webassembly/webassembly.qbs @@ -0,0 +1,31 @@ +import qbs 1.0 + +QtcPlugin { + name: "WebAssembly" + + Depends { name: "Qt.core" } + Depends { name: "Qt.widgets" } + Depends { name: "Utils" } + + Depends { name: "Core" } + Depends { name: "ProjectExplorer" } + Depends { name: "QtSupport" } + + files: [ + "webassembly.qrc", + "webassembly_global.h", + "webassemblyconstants.h", + "webassemblydevice.cpp", + "webassemblydevice.h", + "webassemblyplugin.cpp", + "webassemblyplugin.h", + "webassemblyqtversion.cpp", + "webassemblyqtversion.h", + "webassemblyrunconfigurationaspects.cpp", + "webassemblyrunconfigurationaspects.h", + "webassemblyrunconfiguration.cpp", + "webassemblyrunconfiguration.h", + "webassemblytoolchain.cpp", + "webassemblytoolchain.h", + ] +} |