Andrew Lee (李健秋) a074eb77e0
Adding upstream version 0.9.0.
Signed-off-by: Andrew Lee (李健秋) <ajqlee@debian.org>
2015-08-12 04:56:32 +08:00

42 lines
677 B
CMake

set(PLUGIN "tray")
include(FindPkgConfig)
include(CheckLibraryExists)
find_package(X11 REQUIRED)
pkg_check_modules(XCOMPOSITE REQUIRED xcomposite)
pkg_check_modules(XDAMAGE REQUIRED xdamage)
pkg_check_modules(XRENDER REQUIRED xrender)
set(HEADERS
lxqttrayplugin.h
lxqttray.h
trayicon.h
xfitman.h
)
set(SOURCES
lxqttrayplugin.cpp
lxqttray.cpp
trayicon.cpp
xfitman.cpp
)
set(MOCS
lxqttrayplugin.h
lxqttray.h
trayicon.h
xfitman.h
)
set(LIBRARIES
${X11_LIBRARIES}
${XCOMPOSITE_LIBRARIES}
${XDAMAGE_LIBRARIES}
${XRENDER_LIBRARIES}
${XCB_LIBRARIES}
${XCB_DAMAGE_LIBRARIES}
)
BUILD_LXQT_PLUGIN(${PLUGIN})