swayfx/swaybg/CMakeLists.txt

48 lines
825 B
CMake
Raw Normal View History

find_package(Wayland REQUIRED)
find_package(Cairo REQUIRED)
find_package(Pango REQUIRED)
include(Wayland)
2015-12-02 06:05:46 +11:00
WAYLAND_ADD_PROTOCOL_CLIENT(proto-xdg-shell
2015-12-02 07:37:08 +11:00
../protocols/xdg-shell.xml
2015-12-02 06:46:10 +11:00
xdg-shell
2015-12-02 06:05:46 +11:00
)
WAYLAND_ADD_PROTOCOL_CLIENT(proto-desktop-shell
2015-12-02 07:37:08 +11:00
../protocols/desktop-shell.xml
2015-12-02 06:46:10 +11:00
desktop-shell
2015-12-02 06:05:46 +11:00
)
include_directories(
2015-12-02 06:46:10 +11:00
${WAYLAND_CLIENT_INCLUDE_DIR}
${CAIRO_INCLUDE_DIRS}
${PANGO_INCLUDE_DIRS}
${CMAKE_CURRENT_BINARY_DIR}
)
2015-12-02 07:37:08 +11:00
file(GLOB sources *.c)
file(GLOB common ../common/*.c)
file(GLOB wl_sources ../wayland/*.c)
add_executable(swaybg
2015-12-02 06:46:10 +11:00
${sources}
${wl_sources}
${common}
${proto-xdg-shell}
${proto-desktop-shell}
)
2015-12-02 06:05:46 +11:00
target_link_libraries(swaybg
2015-12-02 06:46:10 +11:00
${WAYLAND_CLIENT_LIBRARIES}
${WAYLAND_CURSOR_LIBRARIES}
${CAIRO_LIBRARIES}
${PANGO_LIBRARIES}
m
2015-12-02 06:05:46 +11:00
)
2015-11-13 13:37:35 +11:00
install(
2015-12-02 06:46:10 +11:00
TARGETS swaybg
RUNTIME
DESTINATION bin
COMPONENT runtime
2015-12-02 06:05:46 +11:00
)