webui/examples/C++/hello_world
Albert Shown 1a1e4c7a00 WebUI v2.0.7
* Switch from GPL to LGPL
* Deno example is ready
* Adding `void _webui_free_all_mem()` to release all dynamic mem at exit
* Break Change `void webui_script_interface(webui_window_t* win, const char* script, unsigned int timeout, bool* error, unsigned int* length, char* data)` to `void webui_script_interface(webui_window_t* win, const char* script, unsigned int timeout, bool* error, unsigned int* length, char** data)`
* Updating readme
* Moving Zig build file into build folder

More code cleaning and more examples is needed before we release the version 2.0.7.
2023-03-21 18:47:19 -04:00
..
Linux WebUI v2.0.7 2023-03-21 18:47:19 -04:00
Windows WebUI v2.0.7 2023-03-21 18:47:19 -04:00
main.cpp WebUI v2.0.7 2023-03-21 18:47:19 -04:00
README.md v2.0.4 2022-11-07 23:33:03 -05:00

WebUI Examples - C++

To build the C++ example you will need any C++11 compiler, no dependencies is needed.

Windows

  • Build Tools for Microsoft Visual Studio
git clone https://github.com/alifcommunity/webui.git
cd webui\examples\C++\Windows\MSVC
nmake
  • MinGW
git clone https://github.com/alifcommunity/webui.git
cd webui\examples\C++\Windows\GCC
mingw32-make

Linux

  • GCC
git clone https://github.com/alifcommunity/webui.git
cd webui/examples/C++/Linux/GCC
make
  • Clang
git clone https://github.com/alifcommunity/webui.git
cd webui/examples/C++/Linux/Clang
make