From 036cc00332070b7e13e83337679f781c6107f511 Mon Sep 17 00:00:00 2001 From: Sebastian Krzyszkowiak Date: Sat, 7 Sep 2019 18:11:56 +0200 Subject: [PATCH] cmake: install the app icon into /usr/share/pixmaps as well --- cmake/libsuperderpy-icons.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/libsuperderpy-icons.cmake b/cmake/libsuperderpy-icons.cmake index 64d3d74..b04d2d7 100644 --- a/cmake/libsuperderpy-icons.cmake +++ b/cmake/libsuperderpy-icons.cmake @@ -8,5 +8,6 @@ if(UNIX AND NOT APPLE AND NOT EMSCRIPTEN) if(EXISTS ${LIBSUPERDERPY_GAMENAME}.svg) install(FILES ${LIBSUPERDERPY_GAMENAME}.svg DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/scalable/apps) endif(EXISTS ${LIBSUPERDERPY_GAMENAME}.svg) + install(FILES ${LIBSUPERDERPY_GAMENAME}.png DESTINATION ${CMAKE_INSTALL_PREFIX}/share/pixmaps) endif(UNIX AND NOT APPLE AND NOT EMSCRIPTEN) install(FILES ${LIBSUPERDERPY_GAMENAME}.png DESTINATION ${DATADIR}/icons)