Files
baidu_fanyi/BuildRel.bat

25 lines
438 B
Batchfile
Raw Permalink Normal View History

@echo off
setlocal enabledelayedexpansion
2026-03-12 19:51:25 +08:00
where cmake >nul 2>nul
if errorlevel 1 (
2026-03-12 19:51:25 +08:00
echo cmake not installed.
pause
exit /b 1
)
2026-03-13 08:58:46 +08:00
cmake -Bbuild -DCMAKE_TOOLCHAIN_FILE=%VCPKG_DIR%\scripts\buildsystems\vcpkg.cmake -DCMAKE_BUILD_TYPE=Release
if errorlevel 1 (
2026-03-12 19:51:25 +08:00
config failed.
pause
exit /b 1
)
2026-03-12 19:51:25 +08:00
cmake --build build --config Release
if errorlevel 1 (
2026-03-12 19:51:25 +08:00
build failed.
pause
exit /b 1
)
echo build success.
pause