Generate protocol headers

This commit is contained in:
Drew DeVault 2015-11-18 17:59:17 -05:00
parent 86372d00db
commit 929537c158
3 changed files with 7 additions and 3 deletions

View File

@ -1,16 +1,18 @@
project (swaybg) project(swaybg)
find_package(Wayland REQUIRED) find_package(Wayland REQUIRED)
find_package(Cairo REQUIRED) find_package(Cairo REQUIRED)
find_package(Pango REQUIRED) find_package(Pango REQUIRED)
include(Wayland) include(Wayland)
WAYLAND_ADD_PROTOCOL_CLIENT(proto-xdg-shell "xdg-shell.xml" xdg-shell) set(CMAKE_CURRENT_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/../bin/)
WAYLAND_ADD_PROTOCOL_CLIENT(proto-xdg-shell "${PROJECT_SOURCE_DIR}/../protocols/xdg-shell.xml" xdg-shell)
include_directories( include_directories(
${WAYLAND_CLIENT_INCLUDE_DIR} ${WAYLAND_CLIENT_INCLUDE_DIR}
${CAIRO_INCLUDE_DIRS} ${CAIRO_INCLUDE_DIRS}
${PANGO_INCLUDE_DIRS} ${PANGO_INCLUDE_DIRS}
${CMAKE_CURRENT_BINARY_DIR}
) )
FILE(GLOB sources ${PROJECT_SOURCE_DIR}/*.c) FILE(GLOB sources ${PROJECT_SOURCE_DIR}/*.c)
@ -21,9 +23,10 @@ add_executable(swaybg
${sources} ${sources}
${wl_sources} ${wl_sources}
${common} ${common}
${proto-xdg-shell}
) )
TARGET_LINK_LIBRARIES(swaybg ${WAYLAND_CLIENT_LIBRARIES} ${CAIRO_LIBRARIES} ${PANGO_LIBRARIES} -lm) TARGET_LINK_LIBRARIES(swaybg ${WAYLAND_CLIENT_LIBRARIES} ${CAIRO_LIBRARIES} ${PANGO_LIBRARIES} m)
install( install(
TARGETS swaybg TARGETS swaybg

View File

@ -1,4 +1,5 @@
#include <wayland-client.h> #include <wayland-client.h>
#include "wayland-xdg-shell-client-protocol.h"
#include <cairo/cairo.h> #include <cairo/cairo.h>
#include <pango/pangocairo.h> #include <pango/pangocairo.h>
#include <stdlib.h> #include <stdlib.h>