2015-12-02 05:57:53 +00:00
|
|
|
include_directories(
|
|
|
|
${PROTOCOLS_INCLUDE_DIRS}
|
|
|
|
${PANGO_INCLUDE_DIRS}
|
2015-12-10 23:34:12 +00:00
|
|
|
${XKBCOMMON_INCLUDE_DIRS}
|
2016-04-28 18:08:41 +00:00
|
|
|
${WAYLAND_INCLUDE_DIR}
|
2016-12-08 12:34:08 +00:00
|
|
|
${EPOLLSHIM_INCLUDE_DIRS}
|
2015-12-02 05:57:53 +00:00
|
|
|
)
|
|
|
|
|
2016-04-28 18:13:26 +00:00
|
|
|
add_library(sway-wayland STATIC
|
2015-12-02 05:57:53 +00:00
|
|
|
buffers.c
|
|
|
|
pango.c
|
|
|
|
registry.c
|
|
|
|
window.c
|
2015-12-10 12:57:46 +00:00
|
|
|
cairo.c
|
2015-12-02 05:57:53 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(sway-wayland
|
|
|
|
sway-common
|
|
|
|
sway-protocols
|
|
|
|
${PANGO_LIBRARIES}
|
2015-12-10 23:34:12 +00:00
|
|
|
${XKBCOMMON_LIBRARIES}
|
2016-12-08 12:34:08 +00:00
|
|
|
${EPOLLSHIM_LIBRARIES}
|
2015-12-02 05:57:53 +00:00
|
|
|
)
|
2015-12-20 16:37:52 +00:00
|
|
|
|
|
|
|
if (WITH_GDK_PIXBUF)
|
|
|
|
include_directories(
|
|
|
|
${GDK_PIXBUF_INCLUDE_DIRS}
|
|
|
|
)
|
|
|
|
target_link_libraries(sway-wayland
|
|
|
|
${GDK_PIXBUF_LIBRARIES}
|
|
|
|
)
|
|
|
|
endif()
|