wlroots-hyprland/backend/CMakeLists.txt

43 lines
766 B
CMake
Raw Normal View History

include_directories(
${PROTOCOLS_INCLUDE_DIRS}
${WAYLAND_INCLUDE_DIR}
2017-05-01 05:50:19 +02: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 07:49:18 +02:00
drm/backend.c
2017-05-01 05:50:19 +02:00
drm/drm.c
2017-06-09 17:28:10 +02:00
libinput/backend.c
2017-06-09 23:31:21 +02:00
libinput/events.c
libinput/keyboard.c
2017-06-13 16:27:15 +02:00
libinput/pointer.c
2017-06-14 17:40:03 +02:00
libinput/touch.c
2017-06-15 20:32:28 +02:00
libinput/tablet_tool.c
2017-06-19 20:49:07 +02:00
libinput/tablet_pad.c
2017-06-09 17:28:10 +02:00
2017-06-13 04:22:40 +02:00
multi/backend.c
2017-05-07 16:00:23 +02:00
backend.c
2017-05-03 07:04:41 +02:00
egl.c
2017-06-09 17:28:10 +02:00
udev.c
)
target_link_libraries(wlr-backend
wlr-common
wlr-types
${WAYLAND_LIBRARIES}
2017-05-02 08:13:17 +02:00
${DRM_LIBRARIES}
${GBM_LIBRARIES}
${GLESv2_LIBRARIES}
${EGL_LIBRARIES}
${SYSTEMD_LIBRARIES}
${UDEV_LIBRARIES}
${LIBINPUT_LIBRARIES}
2017-05-02 08:13:17 +02:00
${GBM_LIBRARIES}
)