This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
SETLOCAL ENABLEDELAYEDEXPANSION | |
ECHO Bootstrapping... | |
where /q conan | |
IF !ERRORLEVEL! NEQ 0 ( | |
ECHO No conan installation found, checking for python installation to install conan via pip... | |
where /q python -v | |
IF !ERRORLEVEL! NEQ 0 ( |