Refactor gdk pixbuf code into shared client lib

This commit is contained in:
Drew DeVault 2015-12-10 07:57:46 -05:00
parent f80481a37d
commit 080a263785
6 changed files with 123 additions and 109 deletions

View file

@ -1,6 +1,7 @@
include_directories(
${PROTOCOLS_INCLUDE_DIRS}
${PANGO_INCLUDE_DIRS}
${GDK_PIXBUF_INCLUDE_DIRS}
)
add_library(sway-wayland
@ -8,10 +9,12 @@ add_library(sway-wayland
pango.c
registry.c
window.c
cairo.c
)
target_link_libraries(sway-wayland
sway-common
sway-protocols
${PANGO_LIBRARIES}
${GDK_PIXBUF_LIBRARIES}
)