mirror of
https://github.com/swaywm/sway.git
synced 2024-10-31 21:47:24 +00:00
468ddfb34d
When headers were installed in more sofisticated places (but package config knows it right), it revealed missing paths in CMake configuration. Lets fix it.
38 lines
556 B
CMake
38 lines
556 B
CMake
include_directories(
|
|
${PROTOCOLS_INCLUDE_DIRS}
|
|
${WAYLAND_INCLUDE_DIR}
|
|
${CAIRO_INCLUDE_DIRS}
|
|
${PANGO_INCLUDE_DIRS}
|
|
${XKBCOMMON_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
|
|
)
|