Super useful library for C++ (shitcoding)
Find a file
2025-05-02 18:14:59 +03:00
src feat: defeat delays on client side 2025-05-02 18:14:59 +03:00
.clang-format feat: socket timeout 2025-04-08 22:13:29 +03:00
.gitignore build: add export to ./include 2025-04-01 12:22:47 +03:00
CMakeLists.txt build: change compilet to MSVC 2025-04-04 15:07:13 +03:00
create_include.sh build: fix cmake build path once more 2025-04-01 18:23:53 +03:00
install Adjusted installation scripts 2022-04-07 18:41:16 +03:00
install_extract build: fix shindows 2025-02-23 21:20:05 +03:00
LICENSE Update LICENSE 2025-04-01 12:02:28 +03:00
main.cpp Fix CLang build. Move Utils implementation to .cpp 2023-03-18 16:36:36 +03:00
README.md build: change compilet to MSVC 2025-04-04 15:07:13 +03:00
uninstall Adjusted installation scripts 2022-04-07 18:41:16 +03:00

foresteamnd

Prepare build

mkdir build
cd build

Build (Linux)

cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release -j{NUMBER_OF_THREADS}

Build (Windows)

cmake -G "Visual Studio 17 2022" .. -DCMAKE_BUILD_TYPE=Release
NUMBER_OF_THREADS=24 cmake --build . --config Release -j ${NUMBER_OF_THREADS}

Install. System-wide, Linux only

chmod +x install
sudo ./install

Install-extract (use bash shell). Organizes files for future import

chmod +x install_extract
./install_extract

(rm -rf build; mkdir build; cd build; cmake -G "Visual Studio 17 2022" .. -DCMAKE_BUILD_TYPE=Release; NUMBER_OF_THREADS=24 cmake --build . --config Release -j ${NUMBER_OF_THREADS})