You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
1.1 KiB
80 lines
1.1 KiB
8 years ago
|
include_directories(
|
||
|
${DRM_INCLUDE_DIRS}
|
||
8 years ago
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||
8 years ago
|
${XKBCOMMON_INCLUDE_DIRS}
|
||
8 years ago
|
)
|
||
|
|
||
8 years ago
|
add_executable(simple
|
||
|
simple.c
|
||
8 years ago
|
shared.c
|
||
8 years ago
|
)
|
||
|
|
||
8 years ago
|
target_link_libraries(simple
|
||
8 years ago
|
wlr-backend
|
||
8 years ago
|
wlr-session
|
||
8 years ago
|
${XKBCOMMON_LIBRARIES}
|
||
8 years ago
|
)
|
||
8 years ago
|
|
||
|
add_executable(rotation
|
||
|
rotation.c
|
||
8 years ago
|
shared.c
|
||
8 years ago
|
cat.c
|
||
8 years ago
|
)
|
||
|
|
||
|
target_link_libraries(rotation
|
||
|
wlr-backend
|
||
|
wlr-session
|
||
8 years ago
|
wlr-render
|
||
8 years ago
|
${XKBCOMMON_LIBRARIES}
|
||
8 years ago
|
)
|
||
8 years ago
|
|
||
|
add_executable(pointer
|
||
|
pointer.c
|
||
|
shared.c
|
||
|
cat.c
|
||
|
)
|
||
|
|
||
|
target_link_libraries(pointer
|
||
|
wlr-backend
|
||
|
wlr-session
|
||
|
wlr-render
|
||
|
${XKBCOMMON_LIBRARIES}
|
||
|
)
|
||
8 years ago
|
|
||
|
add_executable(touch
|
||
|
touch.c
|
||
|
shared.c
|
||
|
cat.c
|
||
|
)
|
||
|
|
||
|
target_link_libraries(touch
|
||
|
wlr-backend
|
||
|
wlr-session
|
||
|
wlr-render
|
||
|
${XKBCOMMON_LIBRARIES}
|
||
|
)
|
||
8 years ago
|
|
||
|
add_executable(tablet
|
||
|
tablet.c
|
||
|
shared.c
|
||
|
)
|
||
|
|
||
|
target_link_libraries(tablet
|
||
|
wlr-backend
|
||
|
wlr-session
|
||
|
wlr-render
|
||
|
${XKBCOMMON_LIBRARIES}
|
||
|
)
|
||
8 years ago
|
|
||
|
add_executable(compositor
|
||
8 years ago
|
compositor/main.c
|
||
8 years ago
|
shared.c
|
||
|
)
|
||
|
|
||
|
target_link_libraries(compositor
|
||
|
wlr-backend
|
||
|
wlr-session
|
||
|
wlr-render
|
||
|
${XKBCOMMON_LIBRARIES}
|
||
|
)
|