Skip to content

Commit e6d6cab

Browse files
committed
Update to VC2022
1 parent 08a489a commit e6d6cab

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/builds.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
- { title: "Linux", os: "ubuntu-latest", cc: "clang", arch: "x64", build_type: "Debug", package_type: "x64-linux", script: "sh" }
2626
- { title: "Linux", os: "ubuntu-latest", cc: "gcc", cxx: "g++", arch: "x64", build_type: "Release", package_type: "x64-linux", script: "sh" }
2727
- { title: "Linux", os: "ubuntu-latest", cc: "gcc", cxx: "g++", arch: "x64", build_type: "Debug", package_type: "x64-linux", script: "sh" }
28-
- { title: "Windows", os: "windows-latest", cc: "vs2019", arch: "x64", build_type: "Release", package_type: "x64-windows-static-md", script: "bat" }
29-
- { title: "Windows", os: "windows-latest", cc: "vs2019", arch: "x64", build_type: "Debug", package_type: "x64-windows-static-md", script: "bat" }
28+
- { title: "Windows", os: "windows-latest", cc: "vs2022", arch: "x64", build_type: "Release", package_type: "x64-windows-static-md", script: "bat" }
29+
- { title: "Windows", os: "windows-latest", cc: "vs2022", arch: "x64", build_type: "Debug", package_type: "x64-windows-static-md", script: "bat" }
3030
- { title: "Mac", os: "macos-latest", cc: "clang", cxx: "clang++", arch: "x64", build_type: "Release", package_type: "x64-osx", script: "sh" }
3131
- { title: "Mac", os: "macos-latest", cc: "clang", cxx: "clang++", arch: "x64", build_type: "Debug", package_type: "x64-osx", script: "sh" }
3232
#- { title: "Coverage", os: "ubuntu-latest", cc: "clang", cxx: "clang++", arch: "x64", build_type: "Coverage", package_type: "x64-linux", script: "sh" }

config.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
set CURRENT_DIR=%CD%
22
mkdir build > nul
33
cd build
4-
cmake -G "Visual Studio 16 2019" -A x64 ..\
4+
cmake -G "Visual Studio 17 2022" ..\
55
cd "%CURRENT_DIR%"
66

config_imgui.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
set CURRENT_DIR=%CD%
22
mkdir build > nul
33
cd build
4-
cmake -G "Visual Studio 16 2019" -A x64 -DBUILD_QT=NO -DBUILD_IMGUI=YES ..\
4+
cmake -G "Visual Studio 17 2022" -A x64 -DBUILD_QT=NO -DBUILD_IMGUI=YES ..\
55
cd "%CURRENT_DIR%"
66

config_libonly.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
set CURRENT_DIR=%CD%
22
mkdir build > nul
33
cd build
4-
cmake -G "Visual Studio 16 2019" -A x64 -DZEP_FEATURE_CPP_FILE_SYSTEM=1 -DBUILD_IMGUI=0 -DBUILD_TESTS=0 -DBUILD_DEMOS=0 ..\
4+
cmake -G "Visual Studio 17 2022" -A x64 -DZEP_FEATURE_CPP_FILE_SYSTEM=1 -DBUILD_IMGUI=0 -DBUILD_TESTS=0 -DBUILD_DEMOS=0 ..\
55
cd "%CURRENT_DIR%"
66

config_qt.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ set CURRENT_DIR=%CD%
22
mkdir build > nul
33
cd build
44

5-
cmake -G "Visual Studio 15 2017 Win64" -DBUILD_QT=YES -DBUILD_IMGUI=NO ..\
5+
cmake -G "Visual Studio 17 2022 Win64" -DBUILD_QT=YES -DBUILD_IMGUI=NO ..\
66
cd "%CURRENT_DIR%"
77

0 commit comments

Comments
 (0)