diff options
Diffstat (limited to 'example/CMakeLists.txt')
-rw-r--r-- | example/CMakeLists.txt | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/example/CMakeLists.txt b/example/CMakeLists.txt index f619b97f..ba96cc02 100644 --- a/example/CMakeLists.txt +++ b/example/CMakeLists.txt @@ -2,11 +2,20 @@ include_directories( ${DRM_INCLUDE_DIRS} ) -add_executable(example - main.c +add_executable(simple + simple.c ) -target_link_libraries(example +target_link_libraries(simple + wlr-backend + wlr-session +) + +add_executable(rotation + rotation.c +) + +target_link_libraries(rotation wlr-backend wlr-session ) |