You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
836 B
38 lines
836 B
|
|
##### png files
|
|
|
|
file( GLOB _png_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/*/pics/*.png )
|
|
|
|
install(
|
|
FILES ${_png_files}
|
|
DESTINATION ${DATA_INSTALL_DIR}/guidance/pics
|
|
)
|
|
|
|
|
|
##### icon files
|
|
|
|
file( GLOB _icons16_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/*/pics/16x16/*.png )
|
|
|
|
install(
|
|
FILES ${_icons16_files}
|
|
DESTINATION ${ICON_INSTALL_DIR}/crystalsvg/16x16/apps
|
|
)
|
|
|
|
install(
|
|
FILES serviceconfig/pics/hi32-app-daemons.png
|
|
DESTINATION ${ICON_INSTALL_DIR}/crystalsvg/32x32/apps
|
|
RENAME daemons.png
|
|
)
|
|
|
|
install(
|
|
FILES mountconfig/pics/kcmpartitions.png
|
|
DESTINATION ${ICON_INSTALL_DIR}/crystalsvg/32x32/apps
|
|
RENAME disksfilesystems.png
|
|
)
|
|
|
|
install(
|
|
FILES userconfig/pics/hi32-user.png
|
|
DESTINATION ${ICON_INSTALL_DIR}/crystalsvg/32x32/apps
|
|
RENAME userconfig.png
|
|
)
|