diff --git a/cmake/xo_typeConfig.cmake.in b/cmake/xo_typeConfig.cmake.in index 2c4c0d1..186f181 100644 --- a/cmake/xo_typeConfig.cmake.in +++ b/cmake/xo_typeConfig.cmake.in @@ -3,6 +3,7 @@ include(CMakeFindDependencyMacro) find_dependency(xo_alloc2) find_dependency(xo_facet) +find_dependency(subsys) # note: changes to find_dependency() calls here # must coordinate with xo_dependency() calls diff --git a/src/type/CMakeLists.txt b/src/type/CMakeLists.txt index 36f8895..806e67a 100644 --- a/src/type/CMakeLists.txt +++ b/src/type/CMakeLists.txt @@ -21,5 +21,6 @@ xo_add_shared_library4(${SELF_LIB} ${PROJECT_NAME}Targets ${PROJECT_VERSION} 1 $ xo_dependency(${SELF_LIB} xo_alloc2) xo_dependency(${SELF_LIB} xo_facet) +xo_dependency(${SELF_LIB} subsys) # end src/type/CMakeLists.txt