Update README.md

This commit is contained in:
Hassan DRAGA 2022-10-19 20:57:17 -03:00 committed by GitHub
parent 3164a741ad
commit ed85c6f0d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,50 +1,42 @@
# WebUI Examples - C
To build a C WebUI application, you will need to [build](https://github.com/alifcommunity/webui/tree/main/build) the WebUI library first, then build your application using the `static` version of WebUI, or the `dynamic` one. Static version make your final executable totally portable. While the dynamic version make your application need the WebUI shared library (*.dll/.so*) to run properly.
The makefile build the WebUI library for you, then build the C example. You will need one of those C compiler, no dependencies is needed.
## Windows
- **Build Tools for Microsoft Visual Studio - Static**
- **Build Tools for Microsoft Visual Studio - Release**
```sh
copy ..\..\build\Windows\MSVC\webui-2-static-x64.lib webui-2-static-x64.lib
rc win.rc
cl "main.c" /I "../../include" /link /MACHINE:X64 /SUBSYSTEM:WINDOWS win.res webui-2-static-x64.lib /OUT:main.exe
cd examples\C\Windows\MSVC
nmake
```
- **Build Tools for Microsoft Visual Studio - Dynamic**
- **Build Tools for Microsoft Visual Studio - Debug**
```sh
copy ..\..\build\Windows\MSVC\webui-2-x64.dll webui-2-x64.dll
copy ..\..\build\Windows\MSVC\webui-2-x64.lib webui-2-x64.lib
rc win.rc
cl "main.c" /I "../../include" /link /MACHINE:X64 /SUBSYSTEM:WINDOWS win.res webui-2-x64.lib /OUT:main.exe
cd examples\C\Windows\MSVC
nmake debug
```
- **MinGW - Static**
- **MinGW - Release**
```sh
copy ..\..\build\Windows\GCC\libwebui-2-static-x64.a libwebui-2-static-x64.a
windres win.rc -O coff -o win.res
gcc -static -Os -m64 -o main.exe "main.c" -I "../../include" -L. win.res -lwebui-2-static-x64 -lws2_32 -Wall -Wl,-subsystem=windows -luser32
strip --strip-all main.exe
cd examples\C\Windows\gcc
mingw32-make
```
- **MinGW - Dynamic**
- **MinGW - Debug**
```sh
copy ..\..\build\Windows\GCC\webui-2-x64.dll webui-2-x64.dll
windres win.rc -O coff -o win.res
gcc -m64 -o main.exe "main.c" -I "../../include" -L. win.res webui-2-x64.dll -lws2_32 -Wall -Wl,-subsystem=windows -luser32
strip --strip-all example_dynamic.exe
cd examples\C\Windows\gcc
mingw32-make debug
```
- **TCC - Static**
- **TCC - Release**
```sh
copy ..\..\build\Windows\TCC\libwebui-2-static-x64.a libwebui-2-static-x64.a
tcc -m64 -o main.exe "main.c" -I "../../include" -L. -lwebui-2-static-x64 -lws2_32 -Wall -Wl,-subsystem=windows -luser32
cd examples\C\Windows\tcc
mingw32-make debug
```
- **TCC - Dynamic**
- **TCC - Debug**
```sh
copy ..\..\build\Windows\TCC\webui-2-x64.dll webui-2-x64.dll
tcc -impdef webui-2-x64.dll -o webui-2-x64.def
tcc -m64 -o example_dynamic.exe "main.c" -I "../../include" -L. webui-2-x64.def -lws2_32 -Wall -Wl,-subsystem=windows -luser32
cd examples\C\Windows\tcc
mingw32-make debug
```