update batch files for vs2022 compat
parent
2ab61c9795
commit
e923f6ccca
@ -1,4 +1,4 @@
|
|||||||
call "%ProgramFiles%\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" x86_amd64
|
call "%ProgramFiles%\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
||||||
cd VC2022
|
cd VC2022
|
||||||
msbuild /m /p:Platform=x64 /p:Configuration=RelWithDebInfo ALL_BUILD.vcxproj
|
msbuild /m /p:Platform=x64 /p:Configuration=RelWithDebInfo ALL_BUILD.vcxproj
|
||||||
cd ..
|
cd ..
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
call "%ProgramFiles%\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
||||||
cd VC2015
|
cd VC2022
|
||||||
msbuild /m /p:Platform=x64 /p:Configuration=Release ALL_BUILD.vcxproj
|
msbuild /m /p:Platform=x64 /p:Configuration=Release ALL_BUILD.vcxproj
|
||||||
cd ..
|
cd ..
|
||||||
pause
|
pause
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
IF EXIST DF_PATH.txt SET /P _DF_PATH=<DF_PATH.txt
|
IF EXIST DF_PATH.txt SET /P _DF_PATH=<DF_PATH.txt
|
||||||
IF NOT EXIST DF_PATH.txt SET _DF_PATH=%CD%\DF
|
IF NOT EXIST DF_PATH.txt SET _DF_PATH=%CD%\DF
|
||||||
mkdir VC2015
|
mkdir VC2022
|
||||||
cd VC2015
|
cd VC2022
|
||||||
echo Pre-generating a build folder
|
echo Pre-generating a build folder
|
||||||
cmake ..\..\.. -G"Visual Studio 17" -A x64 -T v190 -DCMAKE_INSTALL_PREFIX="%_DF_PATH%"
|
cmake ..\..\.. -G"Visual Studio 17 2022" -A x64 -DCMAKE_INSTALL_PREFIX="%_DF_PATH%"
|
||||||
cmake-gui .
|
cmake-gui .
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
IF EXIST DF_PATH.txt SET /P _DF_PATH=<DF_PATH.txt
|
IF EXIST DF_PATH.txt SET /P _DF_PATH=<DF_PATH.txt
|
||||||
IF NOT EXIST DF_PATH.txt SET _DF_PATH=%CD%\DF
|
IF NOT EXIST DF_PATH.txt SET _DF_PATH=%CD%\DF
|
||||||
mkdir VC2015
|
mkdir VC2022
|
||||||
cd VC2015
|
cd VC2022
|
||||||
echo generating a build folder
|
echo generating a build folder
|
||||||
cmake ..\..\.. -G"Visual Studio 14 Win64" -T v140_xp -DCMAKE_INSTALL_PREFIX="%_DF_PATH%" -DBUILD_DEVEL=0 -DBUILD_DEV_PLUGINS=0 -DBUILD_STONESENSE=0
|
cmake ..\..\.. -G"Visual Studio 17 2022" -A x64 -DCMAKE_INSTALL_PREFIX="%_DF_PATH%" -DBUILD_DEVEL=0 -DBUILD_DEV_PLUGINS=0 -DBUILD_STONESENSE=0
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
IF EXIST DF_PATH.txt SET /P _DF_PATH=<DF_PATH.txt
|
IF EXIST DF_PATH.txt SET /P _DF_PATH=<DF_PATH.txt
|
||||||
IF NOT EXIST DF_PATH.txt SET _DF_PATH=%CD%\DF
|
IF NOT EXIST DF_PATH.txt SET _DF_PATH=%CD%\DF
|
||||||
mkdir VC2015
|
mkdir VC2022
|
||||||
cd VC2015
|
cd VC2022
|
||||||
echo generating a build folder
|
echo generating a build folder
|
||||||
cmake ..\..\.. -G"Visual Studio 14 Win64" -T v140_xp -DCMAKE_INSTALL_PREFIX="%_DF_PATH%" -DBUILD_DEVEL=0 -DBUILD_DEV_PLUGINS=0 -DBUILD_DOCS=1 -DBUILD_STONESENSE=1
|
cmake ..\..\.. -G"Visual Studio 17 2022" -A x64 -DCMAKE_INSTALL_PREFIX="%_DF_PATH%" -DBUILD_DEVEL=0 -DBUILD_DEV_PLUGINS=0 -DBUILD_DOCS=1 -DBUILD_STONESENSE=1
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
call "%ProgramFiles%\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
||||||
cd VC2015
|
cd VC2022
|
||||||
msbuild /m /p:Platform=x64 /p:Configuration=RelWithDebInfo INSTALL.vcxproj
|
msbuild /m /p:Platform=x64 /p:Configuration=RelWithDebInfo INSTALL.vcxproj
|
||||||
cd ..
|
cd ..
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
call "%ProgramFiles%\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
||||||
cd VC2015
|
cd VC2022
|
||||||
msbuild /m /p:Platform=x64 /p:Configuration=Release INSTALL.vcxproj
|
msbuild /m /p:Platform=x64 /p:Configuration=Release INSTALL.vcxproj
|
||||||
cd ..
|
cd ..
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
@echo off
|
@echo off
|
||||||
call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
call "%ProgramFiles%\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
||||||
cd VC2015
|
cd VC2022
|
||||||
msbuild /m /p:Platform=x64 /p:Configuration=RelWithDebInfo PACKAGE.vcxproj
|
msbuild /m /p:Platform=x64 /p:Configuration=RelWithDebInfo PACKAGE.vcxproj
|
||||||
cd ..
|
cd ..
|
||||||
exit %ERRORLEVEL%
|
exit %ERRORLEVEL%
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
@echo off
|
@echo off
|
||||||
call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
call "%ProgramFiles%\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
||||||
cd VC2015
|
cd VC2022
|
||||||
msbuild /m /p:Platform=x64 /p:Configuration=Release PACKAGE.vcxproj
|
msbuild /m /p:Platform=x64 /p:Configuration=Release PACKAGE.vcxproj
|
||||||
cd ..
|
cd ..
|
||||||
|
Loading…
Reference in New Issue