summaryrefslogtreecommitdiffstats
path: root/CMakeScripts/Install.cmake
blob: 5ea056200b84cfed3c13470f81c6f6138fd7c30b (plain)
1
2
3
4
5
6
7
8
9
10
if(UNIX)
    #The install directive for the binaries and libraries are found in src/CMakeList.txt
    install(FILES
      ${CMAKE_BINARY_DIR}/org.inkscape.Inkscape.desktop
      DESTINATION ${SHARE_INSTALL}/applications)
    install(FILES ${CMAKE_BINARY_DIR}/org.inkscape.Inkscape.appdata.xml
      DESTINATION ${SHARE_INSTALL}/metainfo)
elseif(WIN32)
    include(CMakeScripts/InstallMSYS2.cmake)
endif()