Files
YYCCommonplace/script/windows_build.bat
T

19 lines
358 B
Batchfile
Raw Normal View History

2026-01-22 15:48:28 +08:00
@ECHO OFF
:: Create build directory and enter it
MKDIR bin
CD bin
:: Create internal build and install directory, then enter it
MKDIR build
MKDIR install
CD build
:: Build with x64 architecture in Release mode
cmake -A x64 ../..
cmake --build . --config Release
cmake --install . --prefix=../install --config Release
:: Back to root directory
CD ..
CD ..