From 30171b9c849e3ac0edb7c4f23b80a0cedd663633 Mon Sep 17 00:00:00 2001 From: mateomaui <148507115+mateomaui@users.noreply.github.com> Date: Thu, 13 Jun 2024 11:08:07 -1000 Subject: [PATCH] removed explanatory comments for less clutter removed explanatory comments for less clutter --- CMakeLists.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1761df38d..30b8c773a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -502,8 +502,6 @@ if(ENABLE_QT) set(YUZU_QT_NO_CMAKE_SYSTEM_PATH) if(YUZU_USE_BUNDLED_QT) - ## removed "AND MSVC_VERSION LESS 1940" below as current Visual Studio version is 19.40.XXX... - ## it would need to be "1941" or higher now. Can leave it out for now until it's necessary again. ## if ((MSVC_VERSION GREATER_EQUAL 1920 AND MSVC_VERSION LESS 1940) AND ARCHITECTURE_x86_64) if ((MSVC_VERSION GREATER_EQUAL 1920) AND ARCHITECTURE_x86_64) set(QT_BUILD qt-5.15.2-msvc2019_64) @@ -534,8 +532,6 @@ endif() if (ENABLE_SDL2) if (YUZU_USE_BUNDLED_SDL2) # Detect toolchain and platform - ## removed "AND MSVC_VERSION LESS 1940" below as current Visual Studio version is 19.40.XXX... - ## it would need to be "1941" or higher now. Can leave it out for now until it's necessary again. ## if ((MSVC_VERSION GREATER_EQUAL 1920 AND MSVC_VERSION LESS 1940) AND ARCHITECTURE_x86_64) if ((MSVC_VERSION GREATER_EQUAL 1920) AND ARCHITECTURE_x86_64) set(SDL2_VER "SDL2-2.28.2")