Files
IDHAN/docs/build.md
KJ16609 a9431ee434 Update build.md
Fix missing build target for first build
2025-07-25 01:09:47 -04:00

621 B

Build steps (First time)

Note: Replace BUILD_TYPE with either Release or Debug depending on your requirements, If you are running this on the system you are building on, use System instead

git clone https://github.com/KJNeko/FGLEngine.git --recursive
cmake -DCMAKE_BUILD_TYPE=System -B build
cmake --build build -j<THREAD COUNT> --target IDHANServer

Build steps (Update)

Tags will be in a semver format (Example: v1.0.0)

git checkout <TAG>
git pull
git submodule update --init --recursive
cmake -DCMAKE_BUILD_TYPE=System -B build
cmake --build build -j<THREAD COUNT> --target IDHANServer