Running a Qt app over the web

前端 未结 7 1714
迷失自我
迷失自我 2021-01-02 06:46

I am writing an application using Qt and want to try and deploy it as a web-application. I want user\'s to be able to use my application by accessing it through a web browse

7条回答
  •  伪装坚强ぢ
    2021-01-02 07:03

    Try "Qt for Webassembly".

    Webassembly allows the C/C++ code to be compiled and run natively inside majority of the browsers:

    WebAssembly (Wasm, WA) is a web standard that defines a binary format and a corresponding assembly-like text format for executable code in Web pages. ... It is executed in a sandbox in the web browser after a verification step. Programs can be compiled from high-level languages into Wasm modules and loaded as libraries from within JavaScript applets ... Its initial aim is to support compilation from C and C++, though support for other source languages such as Rust and .NET languages is also emerging.

提交回复
热议问题