forked from KDAB/GammaRay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
30 lines (29 loc) · 880 Bytes
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
if(UNIX AND NOT APPLE AND GAMMARAY_BUILD_UI)
install(
FILES GammaRay-16x16.png
DESTINATION "${ICON_INSTALL_DIR}/hicolor/16x16/apps" RENAME GammaRay.png
)
install(
FILES GammaRay-32x32.png
DESTINATION "${ICON_INSTALL_DIR}/hicolor/32x32/apps" RENAME GammaRay.png
)
install(
FILES GammaRay-48x48.png
DESTINATION "${ICON_INSTALL_DIR}/hicolor/48x48/apps" RENAME GammaRay.png
)
install(
FILES GammaRay-128x128.png
DESTINATION "${ICON_INSTALL_DIR}/hicolor/128x128/apps" RENAME GammaRay.png
)
install(
FILES GammaRay-256x256.png
DESTINATION "${ICON_INSTALL_DIR}/hicolor/256x256/apps" RENAME GammaRay.png
)
install(
FILES GammaRay-512x512.png
DESTINATION "${ICON_INSTALL_DIR}/hicolor/512x512/apps" RENAME GammaRay.png
)
endif()
if(APPLE)
install(FILES GammaRay.icns DESTINATION "${RESOURCES_INSTALL_DIR}")
endif()