From fe9ae6389240138d57db72a1adc807f07f2d3715 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Fri, 27 Feb 2026 11:34:18 +1100 Subject: [PATCH] xo-alloc: fix broken cmake export deps --- cmake/xo_allocConfig.cmake.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cmake/xo_allocConfig.cmake.in b/cmake/xo_allocConfig.cmake.in index f5afd837..97574de5 100644 --- a/cmake/xo_allocConfig.cmake.in +++ b/cmake/xo_allocConfig.cmake.in @@ -1,7 +1,10 @@ @PACKAGE_INIT@ include(CMakeFindDependencyMacro) +find_dependency(xo_allocutil) +find_dependency(xo_unit) find_dependency(indentlog) -#find_dependency(xo_flatstring) +find_dependency(reflect) +find_dependency(callback) include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake") check_required_components("@PROJECT_NAME@")