From f4470b59dbe0961b5bca4b63759801b71851b1ee Mon Sep 17 00:00:00 2001 From: Eric Riff Date: Wed, 22 Oct 2025 15:19:56 +0000 Subject: [PATCH] Properly mark sqlite3 and cppzmq as public dependencies I moved then to private as a side effect of https://github.com/BehaviorTree/BehaviorTree.CPP/pull/1012 This introduces linking issues on some scenarios --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7cdeea380..8d621f5a3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -231,9 +231,9 @@ target_link_libraries(${BTCPP_LIBRARY} tinyxml2::tinyxml2 minicoro::minicoro flatbuffers::flatbuffers + PUBLIC $<$:cppzmq> $<$:SQLite::SQLite3> - PUBLIC ${BTCPP_EXTRA_LIBRARIES} )