Skip to content

Commit

Permalink
Merge pull request #229 from squeek502/make-vs2017
Browse files Browse the repository at this point in the history
make.bat: Check for VS2017 and use that if it exists
  • Loading branch information
zhaozg committed Mar 10, 2020
2 parents a413ad0 + 18813ab commit 9da12ca
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions make.bat
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ set LUVI_PUBLISH_REPO=luvi
set GENERATOR=Visual Studio 12
reg query HKEY_CLASSES_ROOT\VisualStudio.DTE.14.0 >nul 2>nul
IF %errorlevel%==0 set GENERATOR=Visual Studio 14
reg query HKEY_CLASSES_ROOT\VisualStudio.DTE.15.0 >nul 2>nul
IF %errorlevel%==0 set GENERATOR=Visual Studio 15
set GENERATOR64=%GENERATOR% Win64

for /f %%i in ('git describe') do set LUVI_TAG=%%i
Expand Down

0 comments on commit 9da12ca

Please sign in to comment.