mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-22 07:02:28 +00:00
17 lines
202 B
CMake
17 lines
202 B
CMake
add_executable(example
|
|
main.c
|
|
)
|
|
|
|
target_link_libraries(example
|
|
wlr-backend
|
|
)
|
|
|
|
add_executable(example-drm
|
|
example-drm.c
|
|
)
|
|
|
|
target_link_libraries(example-drm
|
|
wlr-backend
|
|
wlr-session
|
|
)
|