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.
36 lines
627 B
36 lines
627 B
9 years ago
|
set(PLUGIN "statusnotifier")
|
||
|
|
||
|
|
||
|
find_package(dbusmenu-qt5 REQUIRED QUIET)
|
||
|
|
||
|
set(HEADERS
|
||
|
statusnotifier.h
|
||
|
dbustypes.h
|
||
|
statusnotifierbutton.h
|
||
|
statusnotifieriteminterface.h
|
||
|
statusnotifierwatcher.h
|
||
|
statusnotifierwidget.h
|
||
|
)
|
||
|
|
||
|
set(SOURCES
|
||
|
statusnotifier.cpp
|
||
|
dbustypes.cpp
|
||
|
statusnotifierbutton.cpp
|
||
|
statusnotifieriteminterface.cpp
|
||
|
statusnotifierwatcher.cpp
|
||
|
statusnotifierwidget.cpp
|
||
|
)
|
||
|
|
||
|
qt5_add_dbus_adaptor(SOURCES
|
||
|
org.kde.StatusNotifierItem.xml
|
||
|
statusnotifieriteminterface.h
|
||
|
StatusNotifierItemInterface
|
||
|
)
|
||
|
|
||
|
set(LIBRARIES
|
||
|
lxqt
|
||
|
dbusmenu-qt5
|
||
|
)
|
||
|
|
||
|
BUILD_LXQT_PLUGIN(${PLUGIN})
|