mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
24 lines
311 B
CMake
24 lines
311 B
CMake
include_directories(
|
|
${DRM_INCLUDE_DIRS}
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
|
|
add_executable(simple
|
|
simple.c
|
|
)
|
|
|
|
target_link_libraries(simple
|
|
wlr-backend
|
|
wlr-session
|
|
)
|
|
|
|
add_executable(rotation
|
|
rotation.c
|
|
cat.c
|
|
)
|
|
|
|
target_link_libraries(rotation
|
|
wlr-backend
|
|
wlr-session
|
|
wlr-render
|
|
)
|