You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
559 B

find_package(KDecoration2 REQUIRED)
find_package(KF5 REQUIRED COMPONENTS CoreAddons Config)
set(breezedecoration_SRCS
breezecolorsettings.cpp
breezebutton.cpp
breezedecoration.cpp
breezeimageprovider.cpp
)
add_library(breezedecoration MODULE ${breezedecoration_SRCS})
target_link_libraries(breezedecoration
PUBLIC
Qt5::Core
Qt5::Gui
PRIVATE
KDecoration2::KDecoration
KF5::ConfigCore
KF5::CoreAddons
)
install(TARGETS breezedecoration DESTINATION ${PLUGIN_INSTALL_DIR}/org.kde.kdecoration2)