forked from basket-notepads/basket
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use the expected names for icon files, list them
Rename the icon files so that their name matches the expected name (solving a cmake warning during the build process). Also, use the list of files directly in ecm_install_icons: cmake documentation for file(GLOB do not recommend the usage of GLOB to build the list of source files: https://cmake.org/cmake/help/v3.4/command/file.html
- Loading branch information
Showing
32 changed files
with
109 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
FILE(GLOB PNG_FILES | ||
RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" | ||
"${CMAKE_CURRENT_SOURCE_DIR}/hi*.png") | ||
|
||
ecm_install_icons(ICONS ${PNG_FILES} DESTINATION ${ICON_INSTALL_DIR}) | ||
ecm_install_icons(ICONS | ||
128-apps-basket.png | ||
16-actions-likeback_bug.png | ||
16-actions-likeback_dislike.png | ||
16-actions-likeback_feature.png | ||
16-actions-likeback_like.png | ||
16-apps-basket.png | ||
22-apps-basket.png | ||
32-apps-basket.png | ||
48-apps-basket.png | ||
64-apps-basket.png | ||
DESTINATION ${ICON_INSTALL_DIR} | ||
THEME hicolor | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,20 @@ | ||
FILE(GLOB PNG_FILES | ||
RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" | ||
"${CMAKE_CURRENT_SOURCE_DIR}/*.png") | ||
|
||
ecm_install_icons(ICONS ${PNG_FILES} DESTINATION ${ICON_INSTALL_DIR}) | ||
ecm_install_icons(ICONS | ||
16-actions-tag_checkbox.png | ||
16-actions-tag_checkbox_checked.png | ||
16-actions-tag_for_later.png | ||
16-actions-tag_fun.png | ||
16-actions-tag_important.png | ||
16-actions-tag_preference_bad.png | ||
16-actions-tag_preference_excellent.png | ||
16-actions-tag_preference_good.png | ||
16-actions-tag_priority_high.png | ||
16-actions-tag_priority_low.png | ||
16-actions-tag_priority_medium.png | ||
16-actions-tag_progress_000.png | ||
16-actions-tag_progress_025.png | ||
16-actions-tag_progress_050.png | ||
16-actions-tag_progress_075.png | ||
16-actions-tag_progress_100.png | ||
DESTINATION ${ICON_INSTALL_DIR} | ||
THEME hicolor | ||
) |