mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
21 lines
254 B
CMake
21 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
|
|
)
|