mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-03-15 07:00:58 +00:00
Add cmake files for VS 2017 support
Win10 solutions are likely needed to be used if you don't want to depend on the DXSDK same as 2015.
This commit is contained in:
parent
81dc65119d
commit
df08e21e0d
4 changed files with 24 additions and 0 deletions
6
neo/cmake-vs2017-32bit-windows10.bat
Normal file
6
neo/cmake-vs2017-32bit-windows10.bat
Normal file
|
@ -0,0 +1,6 @@
|
|||
cd ..
|
||||
del /s /q build
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -G "Visual Studio 15" -DCMAKE_INSTALL_PREFIX=../bin/windows10-32 -DWINDOWS10=ON ../neo
|
||||
pause
|
6
neo/cmake-vs2017-32bit.bat
Normal file
6
neo/cmake-vs2017-32bit.bat
Normal file
|
@ -0,0 +1,6 @@
|
|||
cd ..
|
||||
del /s /q build
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -G "Visual Studio 15" -DCMAKE_INSTALL_PREFIX=../bin/windows7-32 -DWINDOWS10=OFF ../neo
|
||||
pause
|
6
neo/cmake-vs2017-64bit-windows10.bat
Normal file
6
neo/cmake-vs2017-64bit-windows10.bat
Normal file
|
@ -0,0 +1,6 @@
|
|||
cd ..
|
||||
del /s /q build
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -G "Visual Studio 15 Win64" -DCMAKE_INSTALL_PREFIX=../bin/windows10-64 -DWINDOWS10=ON ../neo
|
||||
pause
|
6
neo/cmake-vs2017-64bit.bat
Normal file
6
neo/cmake-vs2017-64bit.bat
Normal file
|
@ -0,0 +1,6 @@
|
|||
cd ..
|
||||
del /s /q build
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -G "Visual Studio 15 Win64" -DCMAKE_INSTALL_PREFIX=../bin/windows7-64 ../neo
|
||||
pause
|
Loading…
Reference in a new issue