From acb18a58cf77130592d06bd6c7841a2fb05b8996 Mon Sep 17 00:00:00 2001 From: Jesse Talavera Date: Fri, 16 Feb 2024 12:40:45 -0500 Subject: [PATCH] Make the path given to `CMAKE_USER_MAKE_RULES_OVERRIDE` absolute --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1ff8bd9db3..5f43174bcf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,7 +26,7 @@ endif() # This is inserted into the Info.plist as well. set(CMAKE_OSX_DEPLOYMENT_TARGET "10.15.0" CACHE STRING "") -set(CMAKE_USER_MAKE_RULES_OVERRIDE "CMake/FlagsOverride.cmake") +set(CMAKE_USER_MAKE_RULES_OVERRIDE "${CMAKE_CURRENT_SOURCE_DIR}/CMake/FlagsOverride.cmake") project(dolphin-emu)