sway/swaybg/CMakeLists.txt

48 lines
825 B
CMake
Raw Normal View History

find_package(Wayland REQUIRED)
find_package(Cairo REQUIRED)
find_package(Pango REQUIRED)
include(Wayland)
2015-12-01 19:05:46 +00:00
WAYLAND_ADD_PROTOCOL_CLIENT(proto-xdg-shell
2015-12-01 20:37:08 +00:00
../protocols/xdg-shell.xml
2015-12-01 19:46:10 +00:00
xdg-shell
2015-12-01 19:05:46 +00:00
)
WAYLAND_ADD_PROTOCOL_CLIENT(proto-desktop-shell
2015-12-01 20:37:08 +00:00
../protocols/desktop-shell.xml
2015-12-01 19:46:10 +00:00
desktop-shell
2015-12-01 19:05:46 +00:00
)
include_directories(
2015-12-01 19:46:10 +00:00
${WAYLAND_CLIENT_INCLUDE_DIR}
${CAIRO_INCLUDE_DIRS}
${PANGO_INCLUDE_DIRS}
${CMAKE_CURRENT_BINARY_DIR}
)
2015-12-01 20:37:08 +00:00
file(GLOB sources *.c)
file(GLOB common ../common/*.c)
file(GLOB wl_sources ../wayland/*.c)
add_executable(swaybg
2015-12-01 19:46:10 +00:00
${sources}
${wl_sources}
${common}
${proto-xdg-shell}
${proto-desktop-shell}
)
2015-12-01 19:05:46 +00:00
target_link_libraries(swaybg
2015-12-01 19:46:10 +00:00
${WAYLAND_CLIENT_LIBRARIES}
${WAYLAND_CURSOR_LIBRARIES}
${CAIRO_LIBRARIES}
${PANGO_LIBRARIES}
m
2015-12-01 19:05:46 +00:00
)
2015-11-13 02:37:35 +00:00
install(
2015-12-01 19:46:10 +00:00
TARGETS swaybg
RUNTIME
DESTINATION bin
COMPONENT runtime
2015-12-01 19:05:46 +00:00
)