diff --git a/CMakeLists.txt b/CMakeLists.txt index b7ddcaab6..a9dc14f62 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -495,6 +495,8 @@ if(ENABLE_QT AND UNIX AND NOT APPLE) DESTINATION "${CMAKE_INSTALL_PREFIX}/share/applications") install(FILES "${PROJECT_SOURCE_DIR}/dist/azahar.svg" DESTINATION "${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/scalable/apps") + install(FILES "${PROJECT_SOURCE_DIR}/dist/azahar.png" + DESTINATION "${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/512x512/apps") install(FILES "${PROJECT_SOURCE_DIR}/dist/azahar.xml" DESTINATION "${CMAKE_INSTALL_PREFIX}/share/mime/packages") endif() diff --git a/CMakeModules/BundleTarget.cmake b/CMakeModules/BundleTarget.cmake index fb993e65c..592f271a4 100644 --- a/CMakeModules/BundleTarget.cmake +++ b/CMakeModules/BundleTarget.cmake @@ -282,7 +282,7 @@ else() COMMAND ${CMAKE_COMMAND} -E make_directory "${CMAKE_BINARY_DIR}/bundle/dist/") add_custom_command( TARGET bundle - COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_SOURCE_DIR}/dist/icon.png" "${CMAKE_BINARY_DIR}/bundle/dist/azahar.png") + COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_SOURCE_DIR}/dist/azahar.png" "${CMAKE_BINARY_DIR}/bundle/dist/azahar.png") add_custom_command( TARGET bundle COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_SOURCE_DIR}/license.txt" "${CMAKE_BINARY_DIR}/bundle/") diff --git a/dist/icon.png b/dist/azahar.png similarity index 100% rename from dist/icon.png rename to dist/azahar.png