mirror of
https://github.com/miurahr/aqtinstall.git
synced 2025-12-17 20:54:38 +03:00
Support wasm components installation (#55)
* Support for WebAssembler - Qt 5.12 provide tech preview for wasm, and 5.13 and later it supports. Signed-off-by: Hiroshi Miura <miurahr@linux.com>
This commit is contained in:
12
tests/helloworld/main.cpp
Normal file
12
tests/helloworld/main.cpp
Normal file
@@ -0,0 +1,12 @@
|
||||
#include <QApplication>
|
||||
#include <QPushButton>
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
QApplication app (argc, argv);
|
||||
|
||||
QPushButton button ("Hello world !");
|
||||
button.show();
|
||||
|
||||
return app.exec();
|
||||
}
|
||||
Reference in New Issue
Block a user