mirror of
https://github.com/swaywm/sway.git
synced 2024-11-04 15:33:13 +00:00
bcdeb72189
When no type is given, it depends on BUILD_SHARED_LIBS value which is not desired in this case.
31 lines
478 B
CMake
31 lines
478 B
CMake
include_directories(
|
|
${PROTOCOLS_INCLUDE_DIRS}
|
|
${PANGO_INCLUDE_DIRS}
|
|
${XKBCOMMON_INCLUDE_DIRS}
|
|
${WAYLAND_INCLUDE_DIR}
|
|
)
|
|
|
|
add_library(sway-wayland STATIC
|
|
buffers.c
|
|
pango.c
|
|
registry.c
|
|
window.c
|
|
cairo.c
|
|
)
|
|
|
|
target_link_libraries(sway-wayland
|
|
sway-common
|
|
sway-protocols
|
|
${PANGO_LIBRARIES}
|
|
${XKBCOMMON_LIBRARIES}
|
|
)
|
|
|
|
if (WITH_GDK_PIXBUF)
|
|
include_directories(
|
|
${GDK_PIXBUF_INCLUDE_DIRS}
|
|
)
|
|
target_link_libraries(sway-wayland
|
|
${GDK_PIXBUF_LIBRARIES}
|
|
)
|
|
endif()
|