🐛 Fixed VS 2022 build scripts

This commit is contained in:
Edgar 2024-11-01 12:47:40 +01:00 committed by Julian Groß
parent c614fc3fde
commit d94882d217
8 changed files with 18 additions and 14 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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
View 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