We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b101ea commit 6487c72Copy full SHA for 6487c72
cmake/external_dependencies.cmake
@@ -52,7 +52,10 @@ find_package_or_fetch(
52
GIT_REPOSITORY https://github.com/google/flatbuffers.git
53
TAG v25.2.10
54
)
55
-add_library(flatbuffers::flatbuffers ALIAS flatbuffers)
+
56
+if(NOT TARGET flatbuffers::flatbuffers)
57
+ add_library(flatbuffers::flatbuffers ALIAS flatbuffers)
58
+endif()
59
unset(FLATBUFFERS_BUILD_TESTS CACHE)
60
61
if(SPARROW_IPC_BUILD_TESTS)
0 commit comments