xo-reader2: + missing subsystem deps

This commit is contained in:
Roland Conybeare 2026-01-26 15:45:22 -05:00
commit 7dab46a13a
2 changed files with 3 additions and 0 deletions

View file

@ -6,9 +6,11 @@ include(CMakeFindDependencyMacro)
# must coordinate with xo_dependency() calls # must coordinate with xo_dependency() calls
# in CMakeLists.txt # in CMakeLists.txt
# #
find_dependency(xo_procedure2)
find_dependency(xo_gc) find_dependency(xo_gc)
find_dependency(xo_tokenizer2) find_dependency(xo_tokenizer2)
find_dependency(xo_expression2) find_dependency(xo_expression2)
find_dependency(subsys)
include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake") include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake")
check_required_components("@PROJECT_NAME@") check_required_components("@PROJECT_NAME@")

View file

@ -45,6 +45,7 @@ set(SELF_SRCS
xo_add_shared_library4(${SELF_LIB} ${PROJECT_NAME}Targets ${PROJECT_VERSION} 1 ${SELF_SRCS}) xo_add_shared_library4(${SELF_LIB} ${PROJECT_NAME}Targets ${PROJECT_VERSION} 1 ${SELF_SRCS})
# note: deps here must also appear in cmake/xo_expression2Config.cmake.in # note: deps here must also appear in cmake/xo_expression2Config.cmake.in
xo_dependency(${SELF_LIB} xo_procedure2)
xo_dependency(${SELF_LIB} xo_gc) xo_dependency(${SELF_LIB} xo_gc)
xo_dependency(${SELF_LIB} xo_tokenizer2) xo_dependency(${SELF_LIB} xo_tokenizer2)
xo_dependency(${SELF_LIB} xo_expression2) xo_dependency(${SELF_LIB} xo_expression2)