diff options
author | Robert Tari <robert@tari.in> | 2021-06-08 23:32:05 +0200 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2021-06-08 23:32:05 +0200 |
commit | dea96ddc132b8e41fca53a3b4d72cb4a9462202d (patch) | |
tree | 7193e527be8a5a4145629fa3ec9936f4bcc0c671 /tools | |
parent | 912f071d8a27dd547bc39e8763af155d9cdd0b47 (diff) | |
download | libayatana-indicator-dea96ddc132b8e41fca53a3b4d72cb4a9462202d.tar.gz libayatana-indicator-dea96ddc132b8e41fca53a3b4d72cb4a9462202d.tar.bz2 libayatana-indicator-dea96ddc132b8e41fca53a3b4d72cb4a9462202d.zip |
Use CMAKE_INSTALL_FULL_*DIR locations
Diffstat (limited to 'tools')
-rw-r--r-- | tools/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index fd0a4c6..9027490 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -8,6 +8,6 @@ if (FLAVOUR_GTK3 AND ENABLE_IDO) target_link_libraries("ayatana-indicator-loader3" ${PROJECT_DEPS_LIBRARIES} "-L${CMAKE_BINARY_DIR}/src" -layatana-indicator3) add_dependencies("ayatana-indicator-loader3" "ayatana-indicator3") - install(FILES "${CMAKE_CURRENT_BINARY_DIR}/ayatana-indicator-loader3" DESTINATION "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBEXECDIR}/${PROJECT_NAME}") - install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/80indicator-debugging" DESTINATION "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATADIR}/${PROJECT_NAME}") + install(FILES "${CMAKE_CURRENT_BINARY_DIR}/ayatana-indicator-loader3" DESTINATION "${CMAKE_INSTALL_FULL_LIBEXECDIR}/${PROJECT_NAME}") + install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/80indicator-debugging" DESTINATION "${CMAKE_INSTALL_FULL_DATADIR}/${PROJECT_NAME}") endif() |