Skip to content

Commit

Permalink
Fixed share paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
clangen committed Apr 9, 2020
1 parent baeec9b commit e28ead5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,10 @@ file(COPY ${locales} DESTINATION bin/locales)
install(FILES ${locales} DESTINATION share/musikcube/locales)

if (CMAKE_SYSTEM_NAME MATCHES "Linux")
file(GLOB_RECURSE linux_share "src/musikcube/data/linux/share/*")
install(FILES ${linux_share} DESTINATION share/)
file(GLOB_RECURSE linux_share_applications "src/musikcube/data/linux/share/applications/*")
install(FILES ${linux_share_applications} DESTINATION share/applications/)
file(GLOB_RECURSE linux_share_applications "src/musikcube/data/linux/share/icons/*")
install(FILES ${linux_share_applications} DESTINATION share/icons/)
endif()

# libmusikcore sshared library
Expand Down

0 comments on commit e28ead5

Please sign in to comment.