Skip to content

Commit

Permalink
add tools nag to driver build script
Browse files Browse the repository at this point in the history
  • Loading branch information
jxy-s committed Feb 5, 2025
1 parent e2c99f5 commit 78836e7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build/build_zdriver.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
@setlocal enableextensions
@cd /d "%~dp0\..\"

set BUILD_TOOL="tools\CustomBuildTool\bin\Release\%PROCESSOR_ARCHITECTURE%\CustomBuildTool.exe"

if not exist %BUILD_TOOL% (
echo Build tool not found. Run build\build_init.cmd first.
exit /b 1
)

set BUILD_CONFIGURATION=Debug
set BUILD_TARGET=Build
set PREFAST_ANALYSIS=
Expand Down

0 comments on commit 78836e7

Please sign in to comment.