Skip to content

Commit

Permalink
Fix Linux app icon installation
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinHelmut committed Apr 8, 2024
1 parent d19391f commit 98d48c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/cmake/packaging/Linux.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ install(DIRECTORY ${PROJECT_SOURCE_DIR}/src/assets/ DESTINATION ${CMAKE_INSTALL_
# Linux app icon setup
configure_file(
${PROJECT_SOURCE_DIR}/src/app/Manifests/App.desktop.in
${CMAKE_CURRENT_BINARY_DIR}/App.desktop
${CMAKE_CURRENT_BINARY_DIR}/${NAME}.desktop
@ONLY)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/App.desktop
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${NAME}.desktop
DESTINATION share/applications)
install(FILES ${PROJECT_SOURCE_DIR}/src/assets/icons/BaseAppIcon.png
DESTINATION share/pixmaps
RENAME ${APP_NAME}_icon.png)
RENAME ${NAME}_icon.png)

0 comments on commit 98d48c7

Please sign in to comment.