mirror of
https://github.com/swaywm/sway.git
synced 2024-11-04 23:43:14 +00:00
37 lines
536 B
CMake
37 lines
536 B
CMake
include_directories(
|
|
${PROTOCOLS_INCLUDE_DIRS}
|
|
${WAYLAND_CLIENT_INCLUDE_DIR}
|
|
${CAIRO_INCLUDE_DIRS}
|
|
${PANGO_INCLUDE_DIRS}
|
|
)
|
|
|
|
add_executable(swaybg
|
|
main.c
|
|
)
|
|
|
|
target_link_libraries(swaybg
|
|
sway-common
|
|
sway-wayland
|
|
${WAYLAND_CLIENT_LIBRARIES}
|
|
${WAYLAND_CURSOR_LIBRARIES}
|
|
${CAIRO_LIBRARIES}
|
|
${PANGO_LIBRARIES}
|
|
m
|
|
)
|
|
|
|
if (WITH_GDK_PIXBUF)
|
|
include_directories(
|
|
${GDK_PIXBUF_INCLUDE_DIRS}
|
|
)
|
|
target_link_libraries(swaybg
|
|
${GDK_PIXBUF_LIBRARIES}
|
|
)
|
|
endif()
|
|
|
|
install(
|
|
TARGETS swaybg
|
|
RUNTIME
|
|
DESTINATION bin
|
|
COMPONENT runtime
|
|
)
|