From 37f0b44de47c90c29df8eceb8f901fcab8245db8 Mon Sep 17 00:00:00 2001 From: scottr Date: Thu, 29 Apr 2021 16:01:15 -0700 Subject: [PATCH] [install_gem_assets_fix] include the Registry folder in the gem install filtering --- cmake/Platform/Common/Install_common.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/Platform/Common/Install_common.cmake b/cmake/Platform/Common/Install_common.cmake index 82238170f7..fb3a7b1b09 100644 --- a/cmake/Platform/Common/Install_common.cmake +++ b/cmake/Platform/Common/Install_common.cmake @@ -327,7 +327,7 @@ function(ly_setup_others) COMPONENT ${LY_DEFAULT_INSTALL_COMPONENT} ) - # Gem Source Assets + # Gem Source Assets and Registry # Find all gem directories relative to the CMake Source Dir file( GLOB_RECURSE @@ -336,7 +336,7 @@ function(ly_setup_others) RELATIVE "${CMAKE_SOURCE_DIR}/" "Gems/*" ) - list(FILTER gems_assets_path INCLUDE REGEX "/Assets$") + list(FILTER gems_assets_path INCLUDE REGEX "/(Assets|Registry)$") foreach (gem_assets_path ${gems_assets_path}) set(gem_abs_assets_path ${CMAKE_SOURCE_DIR}/${gem_assets_path}/)