|
@@ -27,6 +27,12 @@ else()
|
|
|
message(FATAL_ERROR "smartbotic-database submodule not found. Run: git submodule update --init --recursive")
|
|
message(FATAL_ERROR "smartbotic-database submodule not found. Run: git submodule update --init --recursive")
|
|
|
endif()
|
|
endif()
|
|
|
|
|
|
|
|
|
|
+# Workaround: newer abseil (2505+) splits log_internal_check_op into its own library.
|
|
|
|
|
+# The proto target needs it but the submodule CMake doesn't link it explicitly.
|
|
|
|
|
+if(TARGET absl::log_internal_check_op AND TARGET smartbotic_db_proto)
|
|
|
|
|
+ target_link_libraries(smartbotic_db_proto PUBLIC absl::log_internal_check_op)
|
|
|
|
|
+endif()
|
|
|
|
|
+
|
|
|
# Libraries
|
|
# Libraries
|
|
|
add_subdirectory(lib)
|
|
add_subdirectory(lib)
|
|
|
|
|
|