diff options
author | Harald Fernengel <harald.fernengel@here.com> | 2015-09-21 21:39:50 +0300 |
---|---|---|
committer | Harald Fernengel <harald.fernengel@here.com> | 2015-09-25 14:01:37 +0300 |
commit | 83b223025670494116349382144780143f6e9563 (patch) | |
tree | 014624c783de739f730b85b5f86b56b0275f0ed5 | |
parent | 0bbd153ec9bde9d52c0928b09be951bac3719cd5 (diff) | |
download | kconfig-83b223025670494116349382144780143f6e9563.tar.gz kconfig-83b223025670494116349382144780143f6e9563.tar.bz2 |
Mark kconfig-compiler as non-gui tool
Makes sure that it doens't create an app bundle on Mac OS X
REVIEW: 125337
-rw-r--r-- | src/kconfig_compiler/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/kconfig_compiler/CMakeLists.txt b/src/kconfig_compiler/CMakeLists.txt index 368a4d84..004a6494 100644 --- a/src/kconfig_compiler/CMakeLists.txt +++ b/src/kconfig_compiler/CMakeLists.txt @@ -20,4 +20,6 @@ find_package(Qt5Xml ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) target_link_libraries(kconfig_compiler Qt5::Xml) +ecm_mark_nongui_executable(kconfig_compiler) + install(TARGETS kconfig_compiler EXPORT KF5ConfigCompilerTargets DESTINATION ${KDE_INSTALL_LIBEXECDIR_KF5}) |