Remove build directory

This commit is contained in:
Turiiya 2023-08-21 02:11:24 +02:00
parent 3432cf4562
commit 80ec655901
14 changed files with 1 additions and 641 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
# Build
build/
*.exe
*.ilk
*.pdb

View File

@ -1,45 +0,0 @@
# WebUI Library
# Linux - Clang
SOURCE=../../../src
INCLUDE=../../../include
INCLUDE_CIVETWEB=../../../src/civetweb
all: release
debug:
# Static with Debug info
@echo "Build WebUI Library (Clang Debug Static)..."
@clang -g -m64 -o civetweb.o -I "$(INCLUDE)" -c "$(SOURCE)/civetweb/civetweb.c" -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET
@clang -g -m64 -o webui.o -I "$(INCLUDE)" -c "$(SOURCE)/webui.c" -DWEBUI_LOG
@llvm-ar rc libwebui-2-static-x64.a webui.o civetweb.o
@llvm-ranlib libwebui-2-static-x64.a
# Dynamic with Debug info
@echo "Build WebUI Library (Clang Debug Dynamic)..."
@clang -g -fPIC -m64 -o civetweb.o -I "$(INCLUDE)" -c "$(SOURCE)/civetweb/civetweb.c" -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET
@clang -g -fPIC -m64 -o webui.o -I "$(INCLUDE)" -c "$(SOURCE)/webui.c" -DWEBUI_LOG
@clang -g -shared -o webui-2-x64.so webui.o civetweb.o
# Clean
@- rm -f *.o
@echo "Done."
release:
# Static Release
@echo "Build WebUI Library (Clang Release Static)..."
@clang -Os -m64 -o civetweb.o -I "$(INCLUDE)" -c "$(SOURCE)/civetweb/civetweb.c" -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET
@clang -Os -m64 -o webui.o -I "$(INCLUDE)" -c "$(SOURCE)/webui.c"
@llvm-ar rc libwebui-2-static-x64.a webui.o civetweb.o
@llvm-ranlib libwebui-2-static-x64.a
# Dynamic Release
@echo "Build WebUI Library (Clang Release Dynamic)..."
@clang -O3 -fPIC -m64 -o civetweb.o -I "$(INCLUDE)" -c "$(SOURCE)/civetweb/civetweb.c" -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET
@clang -O3 -fPIC -m64 -o webui.o -I "$(INCLUDE)" -c "$(SOURCE)/webui.c"
@clang -shared -o webui-2-x64.so webui.o civetweb.o
# Clean
@- rm -f *.o
@echo "Done."
clean:
- rm -f *.o
- rm -f *.so
- rm -f *.a

View File

@ -1,45 +0,0 @@
# WebUI Library
# Linux - GCC
SOURCE=../../../src
INCLUDE=../../../include
INCLUDE_CIVETWEB=../../../src/civetweb
all: release
debug:
# Static with Debug info
@echo "Build WebUI Library (GCC Debug Static)..."
@gcc -g -m64 -o civetweb.o -I "$(INCLUDE)" -c "$(SOURCE)/civetweb/civetweb.c" -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET
@gcc -g -m64 -o webui.o -I "$(INCLUDE)" -c "$(SOURCE)/webui.c" -DWEBUI_LOG
@ar rc libwebui-2-static-x64.a webui.o civetweb.o
@ranlib libwebui-2-static-x64.a
# Dynamic with Debug info
@echo "Build WebUI Library (GCC Debug Dynamic)..."
@gcc -g -fPIC -m64 -o civetweb.o -I "$(INCLUDE)" -c "$(SOURCE)/civetweb/civetweb.c" -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET
@gcc -g -fPIC -m64 -o webui.o -I "$(INCLUDE)" -c "$(SOURCE)/webui.c" -DWEBUI_LOG
@gcc -g -shared -o webui-2-x64.so webui.o civetweb.o
# Clean
@- rm -f *.o
@echo "Done."
release:
# Static Release
@echo "Build WebUI Library (GCC Release Static)..."
@gcc -Os -m64 -o civetweb.o -I "$(INCLUDE)" -c "$(SOURCE)/civetweb/civetweb.c" -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET
@gcc -Os -m64 -o webui.o -I "$(INCLUDE)" -c "$(SOURCE)/webui.c"
@ar rc libwebui-2-static-x64.a webui.o civetweb.o
@ranlib libwebui-2-static-x64.a
# Dynamic Release
@echo "Build WebUI Library (GCC Release Dynamic)..."
@gcc -O3 -fPIC -m64 -o civetweb.o -I "$(INCLUDE)" -c "$(SOURCE)/civetweb/civetweb.c" -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET
@gcc -O3 -fPIC -m64 -o webui.o -I "$(INCLUDE)" -c "$(SOURCE)/webui.c"
@gcc -shared -o webui-2-x64.so webui.o civetweb.o
# Clean
@- rm -f *.o
@echo "Done."
clean:
- rm -f *.o
- rm -f *.so
- rm -f *.a

View File

@ -1,15 +0,0 @@
# Build WebUI Library - Linux
- **GCC**
```sh
git clone https://github.com/alifcommunity/webui.git
cd webui\build\Linux\GCC
make
```
- **Clang**
```sh
git clone https://github.com/alifcommunity/webui.git
cd webui\build\Linux\Clang
make
```

View File

@ -1,27 +0,0 @@
# Build WebUI Library
To build the WebUI you will need a `C99` compiler. No dependencies are needed.
### Manually build
[Windows](https://github.com/alifcommunity/webui/tree/main/build/Windows)
[Linux](https://github.com/alifcommunity/webui/tree/main/build/Linux)
[macOS](https://github.com/alifcommunity/webui/tree/main/build/macOS)
### Build WebUI in debug mode & Copy libs into examples folder
Windows: `windows_build debug`
Linux: `sh linux_build.sh debug`
macOS: `sh macos_build.sh debug`
### Build WebUI in release mode
Windows: `windows_build`
Linux: `sh linux_build.sh`
macOS: `sh macos_build.sh`

View File

@ -1,47 +0,0 @@
# WebUI Library
# Windows - GNU Compiler Collection
SHELL=CMD
SOURCE=../../../src
INCLUDE=../../../include
INCLUDE_CIVETWEB=../../../src/civetweb
all: release
debug:
# Static with Debug info
@echo Build WebUI Library (GCC Debug Static)...
@gcc -g -m64 -o civetweb.o -I "$(INCLUDE_CIVETWEB)" -c "$(SOURCE)/civetweb/civetweb.c" -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET -DMUST_IMPLEMENT_CLOCK_GETTIME
@gcc -g -m64 -o webui.o -I "$(INCLUDE)" -c "$(SOURCE)/webui.c" -DWEBUI_LOG
@ar rc libwebui-2-static-x64.a webui.o civetweb.o
@ranlib libwebui-2-static-x64.a
# Dynamic with Debug info
@echo Build WebUI Library (GCC Debug Dynamic)...
@gcc -g -fPIC -m64 -o civetweb.o -I "$(INCLUDE_CIVETWEB)" -c "$(SOURCE)/civetweb/civetweb.c" -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET -DMUST_IMPLEMENT_CLOCK_GETTIME
@gcc -g -fPIC -m64 -o webui.o -I "$(INCLUDE)" -c "$(SOURCE)/webui.c" -DWEBUI_LOG
@gcc -g -shared -o webui-2-x64.dll webui.o civetweb.o -lws2_32
# Clean
@- del *.o >nul 2>&1
@echo Done.
release:
# Static Release
@echo Build WebUI Library (GCC Release Static)...
@gcc -Os -m64 -o civetweb.o -I "$(INCLUDE_CIVETWEB)" -c "$(SOURCE)/civetweb/civetweb.c" -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET -DMUST_IMPLEMENT_CLOCK_GETTIME
@gcc -Os -m64 -o webui.o -I "$(INCLUDE)" -c "$(SOURCE)/webui.c"
@ar rc libwebui-2-static-x64.a webui.o civetweb.o
@ranlib libwebui-2-static-x64.a
# Dynamic Release
@echo Build WebUI Library (GCC Release Dynamic)...
@gcc -Os -fPIC -m64 -o civetweb.o -I "$(INCLUDE_CIVETWEB)" -c "$(SOURCE)/civetweb/civetweb.c" -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET -DMUST_IMPLEMENT_CLOCK_GETTIME
@gcc -O3 -fPIC -m64 -o webui.o -I "$(INCLUDE)" -c "$(SOURCE)/webui.c"
@gcc -shared -o webui-2-x64.dll webui.o civetweb.o -lws2_32
@strip --strip-unneeded webui-2-x64.dll
# Clean
@- del *.o >nul 2>&1
@echo Done.
clean:
- del *.o >nul 2>&1
- del *.dll >nul 2>&1
- del *.a >nul 2>&1

View File

@ -1,45 +0,0 @@
# WebUI Library
# Windows - Microsoft Visual C
all: release
debug:
# Static with Debug info
@echo Build WebUI Library (MSVC Debug Static)...
@cl /Zl /Zi /Focivetweb.obj /c /EHsc "../../../src/civetweb/civetweb.c" /I "../../../src/civetweb/" -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET 1>NUL 2>&1
@cl /Zl /Zi /Fowebui.obj /c /EHsc /DWEBUI_LOG "../../../src/webui.c" /I "../../../include" 1>NUL 2>&1
@lib /OUT:webui-2-static-x64.lib webui.obj civetweb.obj 1>NUL 2>&1
# Dynamic with Debug info
@echo Build WebUI Library (MSVC Debug Dynamic)...
@cl /Zi /Focivetweb.obj /c /EHsc "../../../src/civetweb/civetweb.c" /I "../../../src/civetweb/" -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET 1>NUL 2>&1
@cl /Zi /Fowebui.obj /c /EHsc /DWEBUI_LOG "../../../src/webui.c" /I "../../../include" 1>NUL 2>&1
@link /DLL /OUT:webui-2-x64.dll webui.obj civetweb.obj user32.lib Advapi32.lib 1>NUL 2>&1
# Clean
@- del *.obj >nul 2>&1
@echo Done.
release:
# Static Release
@echo Build WebUI Library (MSVC Release Static)...
@cl /Zl /Focivetweb.obj /c /EHsc "../../../src/civetweb/civetweb.c" /I "../../../src/civetweb/" -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET 1>NUL 2>&1
@cl /Zl /Fowebui.obj /c /EHsc "../../../src/webui.c" /I "../../../include" 1>NUL 2>&1
@lib /OUT:webui-2-static-x64.lib webui.obj civetweb.obj 1>NUL 2>&1
# Dynamic Release
@echo Build WebUI Library (MSVC Release Dynamic)...
@cl /Focivetweb.obj /c /EHsc "../../../src/civetweb/civetweb.c" /I "../../../src/civetweb/" -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET 1>NUL 2>&1
@cl /Fowebui.obj /c /EHsc "../../../src/webui.c" /I "../../../include" 1>NUL 2>&1
@link /DLL /OUT:webui-2-x64.dll webui.obj civetweb.obj user32.lib Advapi32.lib 1>NUL 2>&1
# Clean
@- del *.obj >nul 2>&1
@- del *.ilk >nul 2>&1
@- del *.pdb >nul 2>&1
@- del *.exp >nul 2>&1
@echo Done.
clean:
- del *.obj >nul 2>&1
- del *.dll >nul 2>&1
- del *.ilk >nul 2>&1
- del *.pdb >nul 2>&1
- del *.lib >nul 2>&1
- del *.exp >nul 2>&1

View File

@ -1,23 +0,0 @@
# Build WebUI Library - Windows
- **Microsoft Visual Studio Build Tools**
```sh
git clone https://github.com/webui-dev/webui.git
cd webui\build\Windows\MSVC
nmake
```
- **MinGW**
```sh
git clone https://github.com/webui-dev/webui.git
cd webui\build\Windows\GCC
mingw32-make
```
- **TCC**
```sh
git clone https://github.com/webui-dev/webui.git
cd webui\build\Windows\TCC
mingw32-make
```

View File

@ -1,45 +0,0 @@
# WebUI Library
# Windows - Tiny C Compiler
SHELL=CMD
SOURCE=../../../src
INCLUDE=../../../include
INCLUDE_CIVETWEB=../../../src/civetweb
all: release
debug:
# Static with Debug info
@echo Build WebUI Library (TCC Debug Static)...
@tcc -g -m64 -o civetweb.o -I "$(INCLUDE_CIVETWEB)" -c "$(SOURCE)/civetweb/civetweb.c" -w -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET
@tcc -g -m64 -o webui.o -I "$(INCLUDE)" -c "$(SOURCE)/webui.c" -DWEBUI_LOG -w
@tcc -m64 -ar rcs libwebui-2-static-x64.a webui.o civetweb.o
# Dynamic with Debug info
# @echo Build WebUI Library (TCC Debug Dynamic)...
# @tcc -g -fPIC -m64 -o civetweb.o -I "$(INCLUDE_CIVETWEB)" -c "$(SOURCE)/civetweb/civetweb.c" -w -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET
# @tcc -g -fPIC -m64 -o webui.o -I "$(INCLUDE)" -c "$(SOURCE)/webui.c" -DWEBUI_LOG -w
# @tcc -g -shared -o webui-2-x64.dll webui.o civetweb.o -lws2_32 -lAdvapi32
# Clean
@- del *.o >nul 2>&1
@echo Done.
release:
# Static Release
@echo Build WebUI Library (TCC Release Static)...
@tcc -m64 -o civetweb.o -I "$(INCLUDE_CIVETWEB)" -c "$(SOURCE)/civetweb/civetweb.c" -w -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET
@tcc -m64 -o webui.o -I "$(INCLUDE)" -c "$(SOURCE)/webui.c" -w
@tcc -m64 -ar rcs libwebui-2-static-x64.a webui.o civetweb.o
# Dynamic Release
# @echo Build WebUI Library (TCC Release Dynamic)...
# @tcc -fPIC -m64 -o civetweb.o -I "$(INCLUDE_CIVETWEB)" -c "$(SOURCE)/civetweb/civetweb.c" -w -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET
# @tcc -fPIC -m64 -o webui.o -I "$(INCLUDE)" -c "$(SOURCE)/webui.c" -w
# @tcc -shared -o webui-2-x64.dll webui.o civetweb.o -lws2_32 -lAdvapi32
# Clean
@- del *.o >nul 2>&1
@echo Done.
clean:
- del *.o >nul 2>&1
- del *.dll >nul 2>&1
- del *.a >nul 2>&1
- del *.def >nul 2>&1

View File

@ -1,93 +0,0 @@
#!/bin/bash
WEBUI_VERSION=2.3.0
ARG1=$1
if [ "$ARG1" = "debug" ]; then
CLANG_CMD="make debug"
GCC_CMD="make debug"
else
CLANG_CMD="make"
GCC_CMD="make"
fi
echo "";
echo "WebUI v$WEBUI_VERSION Build Script"
echo "Platform: Linux x64"
echo "Compiler: GCC and Clang"
RootPath="$PWD/.."
BuildPath="$RootPath/build/Linux"
DistPath="$RootPath/dist/Linux"
cd "$RootPath"
echo "";
echo "Building WebUI using GCC...";
echo "";
# Build WebUI Library using GCC
cd "$BuildPath/GCC"
$GCC_CMD
echo "";
echo "Building WebUI using Clang...";
echo "";
# Build WebUI Library using Clang
cd "$BuildPath/Clang"
$CLANG_CMD
echo "";
echo "Copying WebUI libs to the examples folder..."
echo "";
cd "$RootPath"
# C - Text Editor
cp -f "include/webui.h" "examples/C/text-editor/webui.h"
cp -f "$BuildPath/GCC/webui-2-x64.so" "examples/C/text-editor/webui-2-x64.so"
echo "";
if [ "$ARG1" = "" ]; then
echo "Copying WebUI libs to $DistPath..."
echo "";
# Remove Linux distributable files directory if it exits
[ -d "$DistPath" ] && rm -r "$DistPath"
# Create Linux output directories
mkdir -p "$DistPath/include"
mkdir "$DistPath/GCC"
mkdir "$DistPath/Clang"
# Copy include files
cp "include/webui.h" "$DistPath/include/webui.h"
cp "include/webui.hpp" "$DistPath/include/webui.hpp"
# Copy Linux GCC
cp "$BuildPath/GCC/webui-2-x64.so" "$DistPath/GCC/webui-2-x64.so"
cp "$BuildPath/GCC/libwebui-2-static-x64.a" "$DistPath/GCC/libwebui-2-static-x64.a"
# Copy Linux Clang
cp "$BuildPath/Clang/webui-2-x64.so" "$DistPath/Clang/webui-2-x64.so"
cp "$BuildPath/Clang/libwebui-2-static-x64.a" "$DistPath/Clang/libwebui-2-static-x64.a"
echo "";
echo "Compressing distributable files..."
echo "";
TAR_OUT="webui-linux-x64-v$WEBUI_VERSION.tar.gz"
cd "dist"
sleep 2
tar -czf $TAR_OUT Linux/*
cd "$RootPath"
echo "";
echo "Cleaning..."
echo "";
find ./ -type f -name "*.o" -exec rm -f {} \;
fi
cd "build"

View File

@ -1,45 +0,0 @@
# WebUI Library
# macOS - Clang
SOURCE=../../../src
INCLUDE=../../../include
INCLUDE_CIVETWEB=../../../src/civetweb
all: release
debug:
# Static with Debug info
@echo "Build WebUI Library (Clang Debug Static)..."
@clang -g -m64 -o civetweb.o -I "$(INCLUDE)" -c "$(SOURCE)/civetweb/civetweb.c" -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET
@clang -DWEBUI_LOG -g -m64 -o webui.o -I "$(INCLUDE)" -c "$(SOURCE)/webui.c" -DWEBUI_LOG
@ar rc libwebui-2-static-x64.a webui.o civetweb.o
@ranlib libwebui-2-static-x64.a
# Dynamic with Debug info
@echo "Build WebUI Library (Clang Debug Dynamic)..."
@clang -g -fPIC -m64 -o civetweb.o -I "$(INCLUDE)" -c "$(SOURCE)/civetweb/civetweb.c" -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET
@clang -DWEBUI_LOG -g -fPIC -m64 -o webui.o -I "$(INCLUDE)" -c "$(SOURCE)/webui.c" -DWEBUI_LOG
@clang -g -shared -o webui-2-x64.dyn webui.o civetweb.o
#Clean
@- rm -f *.o
@echo "Done."
release:
# Static Release
@echo "Build WebUI Library (Clang Release Static)..."
@clang -Os -m64 -o civetweb.o -I "$(INCLUDE)" -c "$(SOURCE)/civetweb/civetweb.c" -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET
@clang -Os -m64 -o webui.o -I "$(INCLUDE)" -c "$(SOURCE)/webui.c"
@ar rc libwebui-2-static-x64.a webui.o civetweb.o
@ranlib libwebui-2-static-x64.a
# Dynamic Release
@echo "Build WebUI Library (Clang Release Dynamic)..."
@clang -O3 -fPIC -m64 -o civetweb.o -I "$(INCLUDE)" -c "$(SOURCE)/civetweb/civetweb.c" -DNDEBUG -DNO_CACHING -DNO_CGI -DNO_SSL -DUSE_WEBSOCKET
@clang -O3 -fPIC -m64 -o webui.o -I "$(INCLUDE)" -c "$(SOURCE)/webui.c"
@clang -shared -o webui-2-x64.dyn webui.o civetweb.o
# Clean
@- rm -f *.o
@echo "Done."
clean:
- rm -f *.o
- rm -f *.dylib
- rm -f *.a

View File

@ -1,9 +0,0 @@
# Build WebUI Library - macOS
- **Clang**
```sh
git clone https://github.com/alifcommunity/webui.git
cd webui/build/macOS/Clang
make
```

View File

@ -1,80 +0,0 @@
#!/bin/bash
WEBUI_VERSION=2.3.0
ARG1=$1
if [ "$ARG1" = "debug" ]; then
CLANG_CMD="make debug"
GCC_CMD="make debug"
else
CLANG_CMD="make"
GCC_CMD="make"
fi
echo "";
echo "WebUI v$WEBUI_VERSION Build Script"
echo "Platform: macOS x64"
echo "Compiler: Clang"
RootPath="$PWD/.."
BuildPath="$RootPath/build/macOS"
DistPath="$RootPath/dist/macOS"
cd "$RootPath"
echo "";
echo "Building WebUI using Clang...";
echo "";
# Build WebUI Library using Clang
cd "$BuildPath/Clang"
$CLANG_CMD
echo "";
echo "Copying WebUI libs to the examples folder..."
echo "";
cd "$RootPath"
# C - Text Editor
cp -f "include/webui.h" "examples/C/text-editor/webui.h"
cp -f "build/macOS/Clang/webui-2-x64.dyn" "examples/C/text-editor/webui-2-x64.dyn"
echo "";
if [ "$ARG1" = "" ]; then
echo "Copying WebUI libs to $DistPath..."
echo "";
# Remove macOS distributable files directory if it exits
[ -d "$DistPath" ] && rm -r "$DistPath"
# Create macOS output directories
mkdir -p "$DistPath/include"
mkdir "$DistPath/Clang"
# Copy include files
cp "include/webui.h" "$DistPath/include/webui.h"
cp "include/webui.hpp" "$DistPath/include/webui.hpp"
# Copy macOS Clang
cp "$BuildPath/Clang/webui-2-x64.dyn" "$DistPath/Clang/webui-2-x64.dyn"
cp "$BuildPath/Clang/libwebui-2-static-x64.a" "$DistPath/Clang/libwebui-2-static-x64.a"
echo "";
echo "Compressing the release folder..."
echo "";
TAR_OUT="webui-macos-x64-v$WEBUI_VERSION.tar.gz"
cd "dist"
sleep 2
tar -czf $TAR_OUT macOS/*
cd "$RootPath"
echo "";
echo "Cleaning..."
echo "";
find ./ -type f -name "*.o" -exec rm -f {} \;
fi
cd "build"

View File

@ -1,122 +0,0 @@
@echo off
set WEBUI_VERSION=2.3.0
set ARG1=%1
IF "%ARG1%"=="debug" (
set MSVC_CMD=nmake debug
set GCC_CMD=mingw32-make debug
) else (
set MSVC_CMD=nmake
set GCC_CMD=mingw32-make
)
echo.
echo WebUI v%WEBUI_VERSION% Build Script
echo Platform: Microsoft Windows x64
echo Compiler: MSVC, GCC and TCC
Set RootPath=%CD%\..
Set BuildPath=%RootPath%\build\Windows
Set DistPath=%RootPath%\dist\Windows
cd "%RootPath%"
echo.
echo Building WebUI using MSVC...
REM Build WebUI Library using MSVC
cd "%BuildPath%\MSVC"
%MSVC_CMD%
echo.
echo Building WebUI using GCC...
echo.
REM Build WebUI Library using GCC
cd "%BuildPath%\GCC"
%GCC_CMD%
echo.
echo Building WebUI using TCC...
echo.
REM Build WebUI Library using TCC
cd "%BuildPath%\TCC"
%GCC_CMD%
echo.
echo Copying WebUI libs to the examples folder...
echo.
cd "%RootPath%"
REM C++ (Visual Studio 2022)
copy /Y "include\webui.h" "examples\C++\VS2022\serve_a_folder\my_webui_app\webui.h"
copy /Y "include\webui.hpp" "examples\C++\VS2022\serve_a_folder\my_webui_app\webui.hpp"
copy /Y "%BuildPath%\MSVC\webui-2-static-x64.lib" "examples\C++\VS2022\serve_a_folder\my_webui_app\webui-2-static-x64.lib"
REM C++ (Visual Studio 2019)
copy /Y "include\webui.h" "examples\C++\VS2019\serve_a_folder\my_webui_app\webui.h"
copy /Y "include\webui.hpp" "examples\C++\VS2019\serve_a_folder\my_webui_app\webui.hpp"
copy /Y "%BuildPath%\MSVC\webui-2-static-x64.lib" "examples\C++\VS2019\serve_a_folder\my_webui_app\webui-2-static-x64.lib"
REM C - Text Editor
copy /Y "include\webui.h" "examples\C\text-editor\webui.h"
copy /Y "%BuildPath%\MSVC\webui-2-x64.dll" "examples\C\text-editor\webui-2-x64.dll"
echo.
IF "%ARG1%"=="" (
echo Copying WebUI libs to %DistPath%...
echo.
REM Remove Windows distributable files directory if it exits
if exist "%DistPath%" rmdir /s /q "%DistPath%"
REM Create Windows output directories
mkdir "%DistPath%\include" 2>nul
mkdir "%DistPath%\MSVC" 2>nul
mkdir "%DistPath%\GCC" 2>nul
REM Copy include files
copy /Y "include\webui.h" "%DistPath%\include\webui.h"
REM Copy Windows MSVC
copy /Y "%BuildPath%\MSVC\webui-2-x64.dll" "%DistPath%\MSVC\webui-2-x64.dll"
copy /Y "%BuildPath%\MSVC\webui-2-x64.lib" "%DistPath%\MSVC\webui-2-x64.lib"
copy /Y "%BuildPath%\MSVC\webui-2-static-x64.lib" "%DistPath%\MSVC\webui-2-static-x64.lib"
REM Copy Windows GCC
copy /Y "%BuildPath%\GCC\webui-2-x64.dll" "%DistPath%\GCC\webui-2-x64.dll"
copy /Y "%BuildPath%\GCC\libwebui-2-static-x64.a" "%DistPath%\GCC\libwebui-2-static-x64.a"
REM Copy Windows TCC
REM copy /Y "%BuildPath%\TCC\webui-2-x64.dll" "%DistPath%\TCC\webui-2-x64.dll"
REM copy /Y "%BuildPath%\TCC\webui-2-x64.def" "%DistPath%\TCC\webui-2-x64.def"
copy /Y "%BuildPath%\TCC\libwebui-2-static-x64.a" "%DistPath%\TCC\libwebui-2-static-x64.a"
echo.
echo Compressing the release folder...
set TAR_OUT=webui-windows-x64-v%WEBUI_VERSION%.tar.gz
cd "dist"
timeout 2 > NUL
tar.exe -czf %TAR_OUT% Windows\*
cd "%RootPath%"
echo.
echo Cleaning...
DEL /Q /F /S "*.exe" >nul 2>&1
DEL /Q /F /S "*.o" >nul 2>&1
DEL /Q /F /S "*.exp" >nul 2>&1
DEL /Q /F /S "*.pdb" >nul 2>&1
DEL /Q /F /S "*.ilk" >nul 2>&1
DEL /Q /F /S "*.obj" >nul 2>&1
DEL /Q /F /S "*.iobj" >nul 2>&1
DEL /Q /F /S "*.res" >nul 2>&1
DEL /Q /F /S "*.bak" >nul 2>&1
DEL /Q /F /S "*.DS_Store" >nul 2>&1
)
cd "build"