Browse Source

besseres build script

Kolja Strohm 5 years ago
parent
commit
344f20f305
1 changed files with 5 additions and 5 deletions
  1. 5 5
      build.bat

+ 5 - 5
build.bat

@@ -1,27 +1,27 @@
 :DebugWin64
 SET RETURN=DebugWin64
 SET NEXT=ReleaseWin65
-"%InstallDir%\MSBuild\15.0\Bin\MSBuild.exe" Framework.vcxproj /p:configuration=debug /p:platform=x64
+"%InstallDir%\%MSBuildExe%" Framework.vcxproj /p:configuration=debug /p:platform=x64
 if errorlevel 1 GOTO Error
 :ReleaseWin65
 SET RETURN=ReleaseWin65
 SET NEXT=ReleaseWin32
-"%InstallDir%\MSBuild\15.0\Bin\MSBuild.exe" Framework.vcxproj /p:configuration=release /p:platform=x64
+"%InstallDir%\%MSBuildExe%" Framework.vcxproj /p:configuration=release /p:platform=x64
 if errorlevel 1 GOTO Error
 :ReleaseWin32
 SET RETURN=ReleaseWin32
 SET NEXT=DebugLinux64
-"%InstallDir%\MSBuild\15.0\Bin\MSBuild.exe" Framework.vcxproj /p:configuration=release /p:platform=win32
+"%InstallDir%\%MSBuildExe%" Framework.vcxproj /p:configuration=release /p:platform=win32
 if errorlevel 1 GOTO Error
 :DebugLinux64
 SET RETURN=DebugLinux64
 SET NEXT=ReleaseLinux64
-"%InstallDir%\MSBuild\15.0\Bin\MSBuild.exe" "Framework Linux.vcxproj" /t:rebuild /p:configuration=debug /p:platform=x64
+"%InstallDir%\%MSBuildExe%" "Framework Linux.vcxproj" /t:rebuild /p:configuration=debug /p:platform=x64
 if errorlevel 1 GOTO Error
 :ReleaseLinux64
 SET RETURN=ReleaseLinux64
 SET NEXT=End
-"%InstallDir%\MSBuild\15.0\Bin\MSBuild.exe" "Framework Linux.vcxproj" /t:rebuild /p:configuration=release /p:platform=x64
+"%InstallDir%\%MSBuildExe%" "Framework Linux.vcxproj" /t:rebuild /p:configuration=release /p:platform=x64
 if errorlevel 1 GOTO Error
 GOTO End
 :Error