Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dolphin-emu/dolphin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c5cf28c440805e1b0905385e35bc1575cb90ee27
Choose a base ref
..
head repository: dolphin-emu/dolphin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: db1e4a7ad7ceb015a2877b93f69f0db3ec1fb2b0
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 Source/Core/DolphinQt/CMakeLists.txt
4 changes: 2 additions & 2 deletions Source/Core/DolphinQt/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
include(FetchContent)

if (NOT Qt5_DIR AND MSVC)
if(_M_ARM_64)
set(Qt5_DIR "${CMAKE_SOURCE_DIR}/Externals/Qt/Qt5.15.0/msvc2019_arm64/lib/cmake/Qt5")
else()
set(Qt5_DIR "${CMAKE_SOURCE_DIR}/Externals/Qt/Qt5.15.0/msvc2019_64/lib/cmake/Qt5")
endif()
elseif (STEAM_RUNTIME)
include(FetchContent)

FetchContent_GetProperties(SteamRuntimeQt SOURCE_DIR SteamRuntimeQt_SOURCE_DIR)
set(Qt5_DIR "${SteamRuntimeQt_SOURCE_DIR}/Qt5.15.2/steamrt_x86-64/lib/cmake/Qt5")
endif()