From adf8398fa83888cc3107923468eaaced93effbd5 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Thu, 19 Apr 2018 18:43:26 +0100 Subject: [PATCH] Fix .desktop being installed to user rather than global share --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b189138..7cb7bc1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -156,7 +156,7 @@ install(FILES media/flip_y.png DESTINATION share/nodeboxeditor/media) install(FILES media/flip_z.png DESTINATION share/nodeboxeditor/media) install(FILES editor.conf.example DESTINATION share/nodeboxeditor) if(UNIX) - install (FILES nodeboxeditor.desktop DESTINATION ~/.local/share/applications) + install (FILES nodeboxeditor.desktop DESTINATION share/applications) endif() install(FILES README.md DESTINATION share/nodeboxeditor) install(TARGETS ${PROJECT_NAME} DESTINATION bin)