Files
hcie-rust-v3.05/build.bat
T
Your Name 8447b2d796
mandatory-regression-gate / deterministic-tests (push) Has been cancelled
mandatory-regression-gate / protected-performance-path (push) Has been cancelled
Refactor code structure for improved readability and maintainability
2026-07-23 15:34:05 +03:00

18 lines
329 B
Batchfile

@echo off
REM Canonical HCIE workspace build entry point (Windows)
REM Usage: build.bat [cargo-flags...]
setlocal enabledelayedexpansion
set ROOT_DIR=%~dp0
if "%~1"=="" (
set CARGO_ARGS=--workspace
) else (
set CARGO_ARGS=%*
)
call "%ROOT_DIR%scripts\cargo-with-build-id.bat" build %CARGO_ARGS%
exit /b %ERRORLEVEL%