From 5523158b9567deac0f1c733be56e10a89101edff Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Sat, 5 Jul 2025 13:14:40 -0600 Subject: [PATCH] CMake: Install files for fonts, internal, about-settings on non-macOS The corresponding install commands were missed when these file groups were added. --- UI/cmake/ResourceFiles.cmake | 3 +++ 1 file changed, 3 insertions(+) diff --git a/UI/cmake/ResourceFiles.cmake b/UI/cmake/ResourceFiles.cmake index bb5ba130f26..6f8e8fb3bcd 100644 --- a/UI/cmake/ResourceFiles.cmake +++ b/UI/cmake/ResourceFiles.cmake @@ -191,13 +191,16 @@ function(copy_resources_to_build base_directory bundle_target) endfunction() function(install_ladybird_resources destination component) + install(FILES ${FONTS} DESTINATION "${destination}/fonts" COMPONENT ${component}) install(FILES ${16x16_ICONS} DESTINATION "${destination}/icons/16x16" COMPONENT ${component}) install(FILES ${32x32_ICONS} DESTINATION "${destination}/icons/32x32" COMPONENT ${component}) install(FILES ${48x48_ICONS} DESTINATION "${destination}/icons/48x48" COMPONENT ${component}) install(FILES ${128x128_ICONS} DESTINATION "${destination}/icons/128x128" COMPONENT ${component}) install(FILES ${BROWSER_ICONS} DESTINATION "${destination}/icons/browser" COMPONENT ${component}) install(FILES ${THEMES} DESTINATION "${destination}/themes" COMPONENT ${component}) + install(FILES ${INTERNAL_RESOURCES} DESTINATION "${destination}/ladybird" COMPONENT ${component}) install(FILES ${ABOUT_PAGES} DESTINATION "${destination}/ladybird/about-pages" COMPONENT ${component}) + install(FILES ${ABOUT_SETTINGS_RESOURCES} DESTINATION "${destination}/ladybird/about-pages/settings" COMPONENT ${component}) install(FILES ${WEB_TEMPLATES} DESTINATION "${destination}/ladybird/templates" COMPONENT ${component}) install(FILES ${CONFIG_RESOURCES} DESTINATION "${destination}/ladybird/default-config" COMPONENT ${component}) endfunction()