From 87f6c6895d0c3bcbd0af068edb43aedb5f33060a Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Mon, 23 Sep 2024 11:51:26 -0600 Subject: [PATCH] CMake: Don't install fonts on Linux On macOS, it's a bit trickier to not install them, as we're using the MACOSX_PACKAGE_LOCATION file property to get them into the build directory and install tree in the same way. --- Ladybird/cmake/ResourceFiles.cmake | 2 -- 1 file changed, 2 deletions(-) diff --git a/Ladybird/cmake/ResourceFiles.cmake b/Ladybird/cmake/ResourceFiles.cmake index 24234c00c0e..996b0d90c19 100644 --- a/Ladybird/cmake/ResourceFiles.cmake +++ b/Ladybird/cmake/ResourceFiles.cmake @@ -178,8 +178,6 @@ function(copy_resources_to_build base_directory bundle_target) endfunction() function(install_ladybird_resources destination component) - install(FILES ${EMOJI} DESTINATION "${destination}/emoji" COMPONENT ${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})