mirror of
https://github.com/swaywm/sway.git
synced 2024-11-17 21:49:16 +00:00
18 lines
232 B
CMake
18 lines
232 B
CMake
|
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}
|
||
|
)
|