sway/swaybar/CMakeLists.txt

48 lines
828 B
CMake
Raw Normal View History

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