Skip to content

Commit 81b891f

Browse files
committed
Created /docs/shellanything.ico. This file is a placeholder for the latest version of ShellAynthing's icon.
Modified NSIS and WIX related scripts to use shellanything.ico For isssue #63
1 parent 0efcf68 commit 81b891f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CMakeLists.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,7 @@ install(DIRECTORY ${CMAKE_SOURCE_DIR}/licenses DESTINATION ${SHELLANYTHING_INSTA
238238
install(FILES ${CMAKE_SOURCE_DIR}/docs/screenshot_file.png
239239
${CMAKE_SOURCE_DIR}/docs/screenshot_folder.png
240240
${CMAKE_SOURCE_DIR}/docs/ShellAnything-splashscreen.jpg
241+
${CMAKE_SOURCE_DIR}/resources/icons/shellanything.ico
241242
DESTINATION ${SHELLANYTHING_INSTALL_DOC_DIR})
242243

243244
install(FILES ${CMAKE_SOURCE_DIR}/README.md
@@ -279,7 +280,7 @@ set(CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL ON)
279280
# Icon in the add/remove control panel. Must be an .exe file.
280281
# Use the main dll as we do not have main exe.
281282
# The filename will be wrong in debug builds.
282-
set(CPACK_NSIS_INSTALLED_ICON_NAME bin\\\\shellext.dll)
283+
set(CPACK_NSIS_INSTALLED_ICON_NAME docs\\\\shellanything.ico)
283284

284285
# Define our "main" start menu shortcuts for our execuables.
285286
# NSIS uses CPACK_PACKAGE_EXECUTABLES to create start menu shortcuts.
@@ -315,7 +316,7 @@ set(CPACK_NSIS_MENU_LINKS
315316
# Set variables for WIX installer
316317
set(CPACK_WIX_UPGRADE_GUID "EBEF1698-CA72-480A-9FE3-E8A08E7E03ED")
317318
set(CPACK_WIX_LICENSE_RTF "${CMAKE_SOURCE_DIR}/resources/wix_license_template.rtf")
318-
set(CPACK_WIX_PRODUCT_ICON "${CMAKE_SOURCE_DIR}/resources/icons/0.2.0.ico")
319+
set(CPACK_WIX_PRODUCT_ICON "${CMAKE_SOURCE_DIR}/resources/icons/shellanything.ico")
319320
set(CPACK_WIX_HELP_LINK "https://github.com/end2endzone/ShellAnything")
320321

321322
# Do not set 'CPACK_WIX_PRODUCT_GUID' to a valid GUID (ie "C532D05F-E319-4A0E-BD41-14B0B26F245B")

resources/icons/shellanything.ico

1.12 KB
Binary file not shown.

src/resource.rc.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
@LICENSE_CPLUSPLUS_HEADER@
2-
appicon ICON "@CMAKE_SOURCE_DIR@/resources/icons/0.2.0.ico"
2+
appicon ICON "@CMAKE_SOURCE_DIR@/resources/icons/shellanything.ico"

0 commit comments

Comments
 (0)