Skip to content

Instantly share code, notes, and snippets.

View FrostByteGER's full-sized avatar

Kevin Kuegler FrostByteGER

View GitHub Profile
@FrostByteGER
FrostByteGER / bootstrap.bat
Created May 5, 2022 17:21
Conan and Premake Windows bootstrapper
@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 (