wlroots-hyprland/backend/CMakeLists.txt

43 lines
764 B
Text
Raw Normal View History

include_directories(
${PROTOCOLS_INCLUDE_DIRS}
${WAYLAND_INCLUDE_DIR}
2017-05-01 15:50:19 +12:00
${DRM_INCLUDE_DIRS}
${LIBINPUT_INCLUDE_DIRS}
)
add_library(wlr-backend
wayland/backend.c
wayland/registry.c
wayland/wl_seat.c
wayland/output.c
2017-05-01 17:49:18 +12:00
drm/backend.c
2017-05-01 15:50:19 +12:00
drm/drm.c
2017-06-09 11:28:10 -04:00
libinput/backend.c
2017-06-09 17:31:21 -04:00
libinput/events.c
libinput/keyboard.c
2017-06-13 10:27:15 -04:00
libinput/pointer.c
2017-06-14 11:40:03 -04:00
libinput/touch.c
2017-06-15 14:32:28 -04:00
libinput/tablet_tool.c
2017-06-19 14:49:07 -04:00
libinput/tablet_pad.c
2017-06-09 11:28:10 -04:00
2017-06-12 22:22:40 -04:00
multi/backend.c
2017-05-07 10:00:23 -04:00
backend.c
2017-05-03 17:04:41 +12:00
egl.c
2017-06-09 11:28:10 -04:00
udev.c
)
target_link_libraries(wlr-backend
2017-06-21 12:10:07 -04:00
wlr-util
wlr-types
${WAYLAND_LIBRARIES}
2017-05-02 18:13:17 +12:00
${DRM_LIBRARIES}
${GBM_LIBRARIES}
${GLESv2_LIBRARIES}
${EGL_LIBRARIES}
${SYSTEMD_LIBRARIES}
${UDEV_LIBRARIES}
${LIBINPUT_LIBRARIES}
2017-05-02 18:13:17 +12:00
${GBM_LIBRARIES}
)