mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
cce9c338c0
This creates (static) libraries for protocols/, common/, and wayland/.
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}
|
|
)
|