mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-25 16:42:26 +00:00
22 lines
254 B
CMake
22 lines
254 B
CMake
include_directories(
|
|
${DRM_INCLUDE_DIRS}
|
|
)
|
|
|
|
add_executable(simple
|
|
simple.c
|
|
)
|
|
|
|
target_link_libraries(simple
|
|
wlr-backend
|
|
wlr-session
|
|
)
|
|
|
|
add_executable(rotation
|
|
rotation.c
|
|
)
|
|
|
|
target_link_libraries(rotation
|
|
wlr-backend
|
|
wlr-session
|
|
)
|