wlroots-hyprland/types/CMakeLists.txt

21 lines
323 B
CMake
Raw Normal View History

include_directories(
${PROTOCOLS_INCLUDE_DIRS}
${WAYLAND_INCLUDE_DIR}
)
add_library(wlr-types
wlr_output.c
2017-06-15 20:32:28 +02:00
wlr_input_device.c
2017-06-09 23:31:21 +02:00
wlr_keyboard.c
2017-06-13 16:27:15 +02:00
wlr_pointer.c
2017-06-14 17:40:03 +02:00
wlr_touch.c
2017-06-15 20:32:28 +02:00
wlr_tablet_tool.c
2017-06-19 20:49:07 +02:00
wlr_tablet_pad.c
)
target_link_libraries(wlr-types
2017-06-21 18:10:07 +02:00
wlr-util
2017-06-26 07:34:15 +02:00
wlr-render
${WAYLAND_LIBRARIES}
)