Promote types to a standalone subproject
This commit is contained in:
parent
fee409bd0a
commit
579909a368
|
@ -60,7 +60,7 @@ include_directories(include)
|
|||
|
||||
add_subdirectory(backend)
|
||||
add_subdirectory(common)
|
||||
add_subdirectory(wayland)
|
||||
add_subdirectory(types)
|
||||
add_subdirectory(session)
|
||||
|
||||
add_subdirectory(example)
|
||||
|
|
|
@ -18,7 +18,7 @@ add_library(wlr-backend
|
|||
|
||||
target_link_libraries(wlr-backend
|
||||
wlr-common
|
||||
wlr-wayland
|
||||
wlr-types
|
||||
${WAYLAND_LIBRARIES}
|
||||
${DRM_LIBRARIES}
|
||||
${GBM_LIBRARIES}
|
||||
|
|
|
@ -3,11 +3,11 @@ include_directories(
|
|||
${WAYLAND_INCLUDE_DIR}
|
||||
)
|
||||
|
||||
add_library(wlr-wayland
|
||||
types/wlr_output.c
|
||||
add_library(wlr-types
|
||||
wlr_output.c
|
||||
)
|
||||
|
||||
target_link_libraries(wlr-wayland
|
||||
target_link_libraries(wlr-types
|
||||
wlr-common
|
||||
${WAYLAND_LIBRARIES}
|
||||
)
|
Loading…
Reference in New Issue