Add free functions for allocated resources

This commit is contained in:
Drew DeVault 2017-04-25 21:26:29 -04:00
parent 1e8970b4a9
commit 1aed987301
10 changed files with 96 additions and 10 deletions

14
wayland/CMakeLists.txt Normal file
View file

@ -0,0 +1,14 @@
include_directories(
${PROTOCOLS_INCLUDE_DIRS}
${WAYLAND_INCLUDE_DIR}
)
add_library(wlr-wayland
types/wlr_wl_seat.c
types/wlr_wl_output.c
)
target_link_libraries(wlr-wayland
wlr-common
${WAYLAND_LIBRARIES}
)