transm/xp_build.bat

12 lines
248 B
Batchfile
Raw Permalink Normal View History

2025-01-21 16:56:39 +08:00
@echo off
2025-01-21 17:46:40 +08:00
cmake -Bxpbuild -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -DXP_SYSTEM=ON -DUSE_BOOST=ON
2025-02-16 13:07:11 +08:00
cd xpbuild
cpack
2025-01-21 16:56:39 +08:00
if %errorlevel% neq 0 (
2025-02-16 13:07:11 +08:00
echo Error: cmake build failed.
2025-01-21 16:56:39 +08:00
pause
exit /b 1
)
echo Build completed successfully.
pause