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(backend)
|
||||||
add_subdirectory(common)
|
add_subdirectory(common)
|
||||||
add_subdirectory(wayland)
|
add_subdirectory(types)
|
||||||
add_subdirectory(session)
|
add_subdirectory(session)
|
||||||
|
|
||||||
add_subdirectory(example)
|
add_subdirectory(example)
|
||||||
|
|
|
@ -18,7 +18,7 @@ add_library(wlr-backend
|
||||||
|
|
||||||
target_link_libraries(wlr-backend
|
target_link_libraries(wlr-backend
|
||||||
wlr-common
|
wlr-common
|
||||||
wlr-wayland
|
wlr-types
|
||||||
${WAYLAND_LIBRARIES}
|
${WAYLAND_LIBRARIES}
|
||||||
${DRM_LIBRARIES}
|
${DRM_LIBRARIES}
|
||||||
${GBM_LIBRARIES}
|
${GBM_LIBRARIES}
|
||||||
|
|
|
@ -3,11 +3,11 @@ include_directories(
|
||||||
${WAYLAND_INCLUDE_DIR}
|
${WAYLAND_INCLUDE_DIR}
|
||||||
)
|
)
|
||||||
|
|
||||||
add_library(wlr-wayland
|
add_library(wlr-types
|
||||||
types/wlr_output.c
|
wlr_output.c
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(wlr-wayland
|
target_link_libraries(wlr-types
|
||||||
wlr-common
|
wlr-common
|
||||||
${WAYLAND_LIBRARIES}
|
${WAYLAND_LIBRARIES}
|
||||||
)
|
)
|
Loading…
Reference in New Issue