build: + dependencies

This commit is contained in:
Roland Conybeare 2023-10-17 15:49:55 -04:00
commit 10cef97474
2 changed files with 5 additions and 2 deletions

View file

@ -40,12 +40,12 @@ add_subdirectory(src/reactor)
add_subdirectory(utest)
# ----------------------------------------------------------------
# provide find_pacakge() support for reactor customers
# provide find_package() support for reactor customers
xo_export_cmake_config(${PROJECT_NAME} ${PROJECT_VERSION} ${PROJECT_NAME}Targets)
# ----------------------------------------------------------------
# install .hpp files
# install project .hpp files
xo_install_include_tree()

View file

@ -6,7 +6,10 @@ include(CMakeFindDependencyMacro)
# must coordinate with xo_dependency() calls
# in xo-reactor/src/reactor/CMakeLists.txt
#
find_dependency(xo_ordinaltree)
find_dependency(reflect)
find_dependency(webutil)
find_dependency(printjson)
find_dependency(callback)
include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake")