wlroots/backend/CMakeLists.txt

44 lines
774 B
CMake
Raw Normal View History

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