You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# For local build with Visual Studio 2019 with modern CMake
30
30
set(APPLAUNCHER_CMAKE_GENERATOR -G "Visual Studio 16 2019" -T v141 -A Win32)
31
31
set(APPLAUNCHER_USE_NINJA OFF)
32
+
elseif ("$ENV{APPLAUNCHER_CMAKE_GENERATOR}"STREQUAL"Visual Studio 17 2022")
33
+
# For local build with Visual Studio 2019 with modern CMake
34
+
set(APPLAUNCHER_CMAKE_GENERATOR -G "Visual Studio 17 2022" -T v143 -A Win32)
35
+
set(APPLAUNCHER_USE_NINJA OFF)
32
36
else()
33
37
message(FATAL_ERROR "Env. variable APPLAUNCHER_CMAKE_GENERATOR is expected to match 'Ninja' or 'Visual Studio 15 2017' or 'Visual Studio 16 2019' [$ENV{APPLAUNCHER_CMAKE_GENERATOR}]")
0 commit comments