mdeartworks/CMakeLists.txt

62 lines
900 B
Text
Raw Normal View History

2025-11-18 23:18:02 +09:00
cmake_minimum_required(VERSION 3.25)
project(
mdeartworks
)
file(
GLOB
2025-11-21 19:16:16 +09:00
ICONS_SCALABLE
2025-11-21 19:16:53 +09:00
icons/scalable/*.svg
2025-11-21 19:16:16 +09:00
)
file(
GLOB
ICONS_128
icons/128x128/*.png
)
file(
GLOB
ICONS_64
icons/64x64/*.png
)
file(
GLOB
ICONS_32
icons/32x32/*.png
)
file(
GLOB
ICONS_16
icons/16x16/*.png
2025-11-18 23:18:02 +09:00
)
2025-11-19 00:02:56 +09:00
file(
GLOB
WALLPAPERS
wallpapers/*.png
)
2025-11-18 23:18:02 +09:00
include(GNUInstallDirs)
install(
2025-11-21 19:16:16 +09:00
FILES ${ICONS_SCALABLE}
2025-11-27 07:29:41 +09:00
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/mde/icons/scalable
2025-11-21 19:16:16 +09:00
)
install(
FILES ${ICONS_128}
2025-11-27 07:29:41 +09:00
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/mde/icons/128x128
2025-11-21 19:16:16 +09:00
)
install(
FILES ${ICONS_64}
2025-11-27 07:29:41 +09:00
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/mde/icons/64x64
2025-11-21 19:16:16 +09:00
)
install(
FILES ${ICONS_32}
2025-11-27 07:29:41 +09:00
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/mde/icons/32x32
2025-11-21 19:16:16 +09:00
)
install(
FILES ${ICONS_16}
2025-11-27 07:29:41 +09:00
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/mde/icons/16x16
2025-11-18 23:18:02 +09:00
)
2025-11-19 00:02:56 +09:00
install(
FILES ${WALLPAPERS}
2025-11-27 07:29:41 +09:00
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/mde/wallpapers
2025-11-19 00:02:56 +09:00
)