mirror of
https://github.com/JulianGro/overte.git
synced 2025-08-08 09:07:33 +02:00
🐛 Fixed VS 2022 build scripts
This commit is contained in:
parent
c614fc3fde
commit
d94882d217
8 changed files with 18 additions and 14 deletions
|
@ -2,7 +2,7 @@
|
|||
os=Windows
|
||||
arch=x86_64
|
||||
compiler=msvc
|
||||
compiler.version=193
|
||||
compiler.version=194
|
||||
compiler.runtime=dynamic
|
||||
compiler.runtime_type=Debug
|
||||
build_type=Debug
|
|
@ -2,7 +2,7 @@
|
|||
os=Windows
|
||||
arch=x86_64
|
||||
compiler=msvc
|
||||
compiler.version=193
|
||||
compiler.version=194
|
||||
compiler.runtime=dynamic
|
||||
compiler.runtime_type=Debug
|
||||
build_type=Debug
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
os=Windows
|
||||
arch=x86_64
|
||||
compiler=msvc
|
||||
compiler.version=193
|
||||
compiler.version=194
|
||||
compiler.runtime=dynamic
|
||||
compiler.runtime_type=Release
|
||||
build_type=Release
|
|
@ -2,7 +2,7 @@
|
|||
os=Windows
|
||||
arch=x86_64
|
||||
compiler=msvc
|
||||
compiler.version=193
|
||||
compiler.version=194
|
||||
compiler.runtime=dynamic
|
||||
compiler.runtime_type=Release
|
||||
build_type=Release
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
os=Windows
|
||||
arch=x86_64
|
||||
compiler=msvc
|
||||
compiler.version=193
|
||||
compiler.version=194
|
||||
compiler.runtime=dynamic
|
||||
compiler.runtime_type=RelWithDebInfo
|
||||
build_type=RelWithDebInfo
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
mkdir build
|
||||
cd build
|
||||
cmake .. -G "Visual Studio 16 2019" -A x64
|
||||
ECHO CMake has finished.
|
||||
ECHO Running conan
|
||||
conan install . -b missing -pr=tools/conan-profiles/vs-19-release -of build
|
||||
conan install . -b missing -pr=tools/conan-profiles/vs-19-debug -of build
|
||||
ECHO Running cmake
|
||||
cmake --preset conan-default
|
||||
ECHO CMake has finished
|
||||
pause
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
mkdir build
|
||||
cd build
|
||||
cmake .. -G "Visual Studio 17 2022" -A x64
|
||||
ECHO CMake has finished.
|
||||
pause
|
7
winprepareVS22.bat
Normal file
7
winprepareVS22.bat
Normal file
|
@ -0,0 +1,7 @@
|
|||
ECHO Running conan
|
||||
conan install . -b missing -pr=tools/conan-profiles/vs-22-release -of build
|
||||
echo conan install . -b missing -pr=tools/conan-profiles/vs-22-debug -of build
|
||||
ECHO Running cmake
|
||||
cmake --preset conan-default
|
||||
ECHO CMake has finished
|
||||
pause
|
Loading…
Reference in a new issue