2019-04-29 02:37:02 +00:00
|
|
|
@echo off
|
|
|
|
if defined MSYSTEM (
|
2021-11-09 12:10:56 +00:00
|
|
|
echo This .bat file is for Windows CMD.EXE shell only.
|
2019-04-29 02:37:02 +00:00
|
|
|
goto end
|
|
|
|
)
|
2021-03-09 11:53:11 +00:00
|
|
|
|
|
|
|
:: Missing requirements check
|
|
|
|
set MISSING_REQUIREMENTS=
|
|
|
|
python.exe --version >NUL 2>NUL
|
|
|
|
if %errorlevel% neq 0 set "MISSING_REQUIREMENTS= python &echo\"
|
|
|
|
git.exe --version >NUL 2>NUL
|
|
|
|
if %errorlevel% neq 0 set "MISSING_REQUIREMENTS=%MISSING_REQUIREMENTS% git"
|
|
|
|
|
|
|
|
if not "%MISSING_REQUIREMENTS%" == "" goto :error_missing_requirements
|
|
|
|
|
2019-04-29 02:37:02 +00:00
|
|
|
:: Infer IDF_PATH from script location
|
|
|
|
set IDF_PATH=%~dp0
|
|
|
|
set IDF_PATH=%IDF_PATH:~0,-1%
|
|
|
|
|
2021-04-26 19:34:48 +00:00
|
|
|
set TARGETS="all"
|
|
|
|
if NOT "%1"=="" set TARGETS=%*
|
|
|
|
|
2019-04-29 02:37:02 +00:00
|
|
|
echo Installing ESP-IDF tools
|
2021-10-06 09:06:22 +00:00
|
|
|
python.exe "%IDF_PATH%\tools\idf_tools.py" install --targets=%TARGETS%
|
2019-07-23 04:20:52 +00:00
|
|
|
if %errorlevel% neq 0 goto :end
|
2019-04-29 02:37:02 +00:00
|
|
|
|
|
|
|
echo Setting up Python environment
|
2021-10-06 09:06:22 +00:00
|
|
|
python.exe "%IDF_PATH%\tools\idf_tools.py" install-python-env
|
2019-07-23 04:20:52 +00:00
|
|
|
if %errorlevel% neq 0 goto :end
|
2019-04-29 02:37:02 +00:00
|
|
|
|
|
|
|
echo All done! You can now run:
|
|
|
|
echo export.bat
|
2021-03-09 11:53:11 +00:00
|
|
|
goto :end
|
|
|
|
|
|
|
|
:error_missing_requirements
|
|
|
|
echo.
|
|
|
|
echo Error^: The following tools are not installed in your environment.
|
|
|
|
echo.
|
|
|
|
echo %MISSING_REQUIREMENTS%
|
|
|
|
echo.
|
|
|
|
echo Please use the Windows Tool installer for setting up your environment.
|
|
|
|
echo Download link: https://dl.espressif.com/dl/esp-idf/
|
|
|
|
echo For more details please visit our website: https://docs.espressif.com/projects/esp-idf/en/latest/esp32/get-started/windows-setup.html
|
|
|
|
goto :end
|
2019-07-23 04:20:52 +00:00
|
|
|
|
|
|
|
:end
|