setup.bat 572 B

123456789101112131415
  1. @echo off
  2. set NUCLEI_TOOL_ROOT=D:\NucleiStudio\toolchain
  3. REM Create your setup_config.bat
  4. REM and define NUCLEI_TOOL_ROOT like below
  5. REM set NUCLEI_TOOL_ROOT=D:\NucleiStudio_IDE_202310-win64\NucleiStudio\toolchain
  6. set SETUP_CONFIG=setup_config.bat
  7. if exist %SETUP_CONFIG% call %SETUP_CONFIG%
  8. echo Setup Nuclei SDK Tool Environment
  9. echo NUCLEI_TOOL_ROOT=%NUCLEI_TOOL_ROOT%
  10. set PATH=%NUCLEI_TOOL_ROOT%\gcc\bin;%NUCLEI_TOOL_ROOT%\openocd\bin;%NUCLEI_TOOL_ROOT%\build-tools\bin;%NUCLEI_TOOL_ROOT%\qemu\bin;%NUCLEI_TOOL_ROOT%\nucleimodel\bin;%PATH%
  11. @echo on