mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-03-15 07:00:58 +00:00
Added cmake files for VS 2019 support
This commit is contained in:
parent
60bb7be640
commit
21512486dd
4 changed files with 24 additions and 0 deletions
6
neo/cmake-vs2019-32bit-windows10.bat
Normal file
6
neo/cmake-vs2019-32bit-windows10.bat
Normal file
|
@ -0,0 +1,6 @@
|
|||
cd ..
|
||||
del /s /q build
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -G "Visual Studio 16" -A Win32 -DCMAKE_INSTALL_PREFIX=../bin/windows10-32 -DWINDOWS10=ON ../neo
|
||||
pause
|
6
neo/cmake-vs2019-32bit.bat
Normal file
6
neo/cmake-vs2019-32bit.bat
Normal file
|
@ -0,0 +1,6 @@
|
|||
cd ..
|
||||
del /s /q build
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -G "Visual Studio 16" -A Win32 -DCMAKE_INSTALL_PREFIX=../bin/windows7-32 -DWINDOWS10=OFF ../neo
|
||||
pause
|
6
neo/cmake-vs2019-64bit-windows10.bat
Normal file
6
neo/cmake-vs2019-64bit-windows10.bat
Normal file
|
@ -0,0 +1,6 @@
|
|||
cd ..
|
||||
del /s /q build
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -G "Visual Studio 16" -A x64 -DCMAKE_INSTALL_PREFIX=../bin/windows10-64 -DWINDOWS10=ON ../neo
|
||||
pause
|
6
neo/cmake-vs2019-64bit.bat
Normal file
6
neo/cmake-vs2019-64bit.bat
Normal file
|
@ -0,0 +1,6 @@
|
|||
cd ..
|
||||
del /s /q build
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -G "Visual Studio 16" -A x64 -DCMAKE_INSTALL_PREFIX=../bin/windows7-64 ../neo
|
||||
pause
|
Loading…
Reference in a new issue