diff options
author | Aleix Pol <aleixpol@kde.org> | 2018-01-04 12:50:02 +0100 |
---|---|---|
committer | Aleix Pol <aleixpol@kde.org> | 2018-02-05 16:03:26 +0100 |
commit | 889c0a96bc65e210ee03f8385363a9b23d7d87c7 (patch) | |
tree | 45cc45daeeb9b157ce936783e111afb6ac540e01 | |
parent | 615a9f1102825e836dab9fa5d3fe03ac216b27ab (diff) | |
download | kconfig-889c0a96bc65e210ee03f8385363a9b23d7d87c7.tar.gz kconfig-889c0a96bc65e210ee03f8385363a9b23d7d87c7.tar.bz2 |
Export kconf_update with tooling
Summary:
This way if another cmake project imports it when cross-compiling, it
can be executed.
Reviewers: #frameworks
Tags: #frameworks
Differential Revision: https://phabricator.kde.org/D9652
-rw-r--r-- | src/kconf_update/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kconf_update/CMakeLists.txt b/src/kconf_update/CMakeLists.txt index db115115..63a19b41 100644 --- a/src/kconf_update/CMakeLists.txt +++ b/src/kconf_update/CMakeLists.txt @@ -21,4 +21,4 @@ configure_file(config-kconf.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-kconf.h ) # Although this is mostly an internal binary (hence installing it in # KF5_LIBEXEC_INSTALL_DIR), it is used by kded, and so we export its location -install(TARGETS kconf_update EXPORT KF5ConfigTargets DESTINATION ${KDE_INSTALL_LIBEXECDIR_KF5}) +install(TARGETS kconf_update EXPORT KF5ConfigCompilerTargets DESTINATION ${KDE_INSTALL_LIBEXECDIR_KF5}) |