dcf91d4321
We have lots of inconsistency at the moment in CMakeLists.txt files. Most of it is due to kwin being a very old project. This change hopefully fixes all of it.
14 lines
456 B
CMake
14 lines
456 B
CMake
add_subdirectory(icons)
|
|
|
|
########### next target ###############
|
|
add_executable(kwin5_update_default_rules update_default_rules.cpp)
|
|
target_link_libraries(kwin5_update_default_rules
|
|
KF5::ConfigCore
|
|
Qt5::Core
|
|
Qt5::DBus
|
|
)
|
|
install(TARGETS kwin5_update_default_rules DESTINATION ${LIB_INSTALL_DIR}/kconf_update_bin/)
|
|
|
|
########### install files ###############
|
|
|
|
install(FILES org_kde_kwin.categories DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR})
|