Newer
Older
Import / applications / Photoframe / _env.bat
@John Ryland John Ryland on 10 Jan 2021 338 bytes move to using the shell scripts
@echo off
rem
rem Script for setting up dev environment variables on Windows
rem Copyright (C) 2021, John Ryland
rem

call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Auxiliary\Build\vcvars64.bat"
set QTDIR=C:\Users\John\Documents\Code\Qt-5.13.2\5.13.2\msvc2017_64
set PATH=%QTDIR%\bin;%PATH%
set MAKE=nmake

cmd