From 72b364dad8a1ddcddf95bad61f5e3b2dcf993a85 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Wed, 6 Nov 2024 20:34:16 +1100 Subject: [PATCH] Restore the default UE installation to 5.2 (instead of 5.5). --- extern/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extern/CMakeLists.txt b/extern/CMakeLists.txt index 1491053b9..5fce667b1 100644 --- a/extern/CMakeLists.txt +++ b/extern/CMakeLists.txt @@ -12,7 +12,7 @@ endif() if (NOT UNREAL_ENGINE_ROOT) # On Windows, try to use the default UE 5.2 location - set(WINDOWS_DEFAULT_UNREAL_INSTALLATION "C:/Program Files/Epic Games/UE_5.5") + set(WINDOWS_DEFAULT_UNREAL_INSTALLATION "C:/Program Files/Epic Games/UE_5.2") if (WIN32 AND EXISTS "${WINDOWS_DEFAULT_UNREAL_INSTALLATION}") set(UNREAL_ENGINE_ROOT "${WINDOWS_DEFAULT_UNREAL_INSTALLATION}") else()