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.
18 lines
232 B
18 lines
232 B
9 years ago
|
include_directories(
|
||
|
${PROTOCOLS_INCLUDE_DIRS}
|
||
|
${PANGO_INCLUDE_DIRS}
|
||
|
)
|
||
|
|
||
|
add_library(sway-wayland
|
||
|
buffers.c
|
||
|
pango.c
|
||
|
registry.c
|
||
|
window.c
|
||
|
)
|
||
|
|
||
|
target_link_libraries(sway-wayland
|
||
|
sway-common
|
||
|
sway-protocols
|
||
|
${PANGO_LIBRARIES}
|
||
|
)
|