fuzzers|cmake: Link xml_lpm_fuzzer against Abseil, explicitly

This commit is contained in:
Sebastian Pipping 2025-02-02 19:04:48 +01:00
parent 2fd3844a7c
commit d7e41e2de8

View file

@ -760,6 +760,7 @@ if(EXPAT_BUILD_FUZZERS)
endforeach()
endforeach()
find_package(absl REQUIRED)
find_package(Protobuf REQUIRED)
# Only include libprotobuf-mutator here so we don't build it in non-fuzz
@ -795,6 +796,7 @@ if(EXPAT_BUILD_FUZZERS)
target_include_directories(xml_lpm_fuzzer PUBLIC ${ProtobufMutator_INCLUDE_DIR})
target_link_libraries(xml_lpm_fuzzer
fuzzpat
${absl_LIBRARIES}
${Protobuf_LIBRARIES}
${ProtobufMutator_LIBRARIES})
# NOTE: Avoiding target_link_options here only because it needs CMake >=3.13