Warning, /plasma/plasma-sdk/themeexplorer/src/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 
0002 
0003 set(plasmathemeexplorer_SRCS
0004     main.cpp
0005     thememodel.cpp
0006     themelistmodel.cpp
0007     coloreditor.cpp
0008 )
0009 
0010 add_executable(plasmathemeexplorer ${plasmathemeexplorer_SRCS})
0011 target_compile_definitions(plasmathemeexplorer PRIVATE -DPROJECT_VERSION="${PROJECT_VERSION}")
0012 
0013 #find_package(ActiveApp REQUIRED)
0014 
0015 target_link_libraries(plasmathemeexplorer
0016  Qt::Gui
0017  Qt::Quick
0018  Qt::Widgets
0019  Qt::Xml
0020  KF5::Archive
0021  KF5::Declarative
0022  KF5::I18n
0023  KF5::Package
0024  KF5::Plasma
0025  KF5::KIOCore
0026  KF5::KIOWidgets
0027  KF5::QuickAddons
0028 )
0029 
0030 if (TARGET Qt6::Core5Compat)
0031     target_link_libraries(plasmathemeexplorer Qt6::Core5Compat)
0032 endif()
0033 
0034 install(TARGETS plasmathemeexplorer ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})