blob: ec4a7335ae696a7e36e329fa2791dd5d24af2926 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
set(kconfig_compiler_SRCS kconfig_compiler.cpp)
add_executable(kconfig_compiler ${kconfig_compiler_SRCS})
set_target_properties(kconfig_compiler PROPERTIES
OUTPUT_NAME "kconfig_compiler_kf5"
)
add_executable(KF5::kconfig_compiler ALIAS kconfig_compiler)
find_package(Qt5Xml 5.2.0 REQUIRED NO_MODULE)
target_link_libraries(kconfig_compiler Qt5::Xml)
install(TARGETS kconfig_compiler EXPORT KF5ConfigTargets ${KF5_INSTALL_TARGETS_DEFAULT_ARGS})
|