From bb1a7580f5bfbffb94b8d6ab59075039cfea2cd0 Mon Sep 17 00:00:00 2001 From: scottr Date: Thu, 22 Apr 2021 16:37:15 -0700 Subject: [PATCH] [cpack_installer] missed some new install() entries after a merge that need component tagging --- cmake/Platform/Common/Install_common.cmake | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cmake/Platform/Common/Install_common.cmake b/cmake/Platform/Common/Install_common.cmake index 2d4917c61e..3daddabaa6 100644 --- a/cmake/Platform/Common/Install_common.cmake +++ b/cmake/Platform/Common/Install_common.cmake @@ -296,15 +296,18 @@ function(ly_setup_others) install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin/$/Registry DESTINATION ./bin/$ + COMPONENT ${LY_DEFAULT_INSTALL_COMPONENT} ) install(DIRECTORY # This one will change soon, Engine/Registry files will be relocated to Registry ${CMAKE_SOURCE_DIR}/Engine/Registry DESTINATION ./Engine + COMPONENT ${LY_DEFAULT_INSTALL_COMPONENT} ) install(FILES ${CMAKE_SOURCE_DIR}/AssetProcessorPlatformConfig.setreg DESTINATION ./Registry + COMPONENT ${LY_DEFAULT_INSTALL_COMPONENT} ) # Qt Binaries @@ -313,6 +316,7 @@ function(ly_setup_others) install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin/$/${qt_dir} DESTINATION ./bin/$ + COMPONENT ${LY_DEFAULT_INSTALL_COMPONENT} ) endforeach() @@ -320,6 +324,7 @@ function(ly_setup_others) install(DIRECTORY ${CMAKE_SOURCE_DIR}/Templates DESTINATION . + COMPONENT ${LY_DEFAULT_INSTALL_COMPONENT} ) # Misc @@ -328,6 +333,7 @@ function(ly_setup_others) ${CMAKE_SOURCE_DIR}/LICENSE.txt ${CMAKE_SOURCE_DIR}/README.md DESTINATION . + COMPONENT ${LY_DEFAULT_INSTALL_COMPONENT} ) endfunction()