Merge pull request #951 from libexpat/fuzzers-check-for-protobuf-compiler

fuzzers|cmake: Check for availability of protobuf compiler
This commit is contained in:
Sebastian Pipping 2025-02-03 19:18:59 +01:00 committed by GitHub
commit 079fc26a06
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -786,6 +786,14 @@ if(EXPAT_BUILD_FUZZERS)
UPDATE_COMMAND true
INSTALL_COMMAND true)
# Check for availability of protobuf compiler to avoid hard-to-understand
# errors from make(1) down the line as seen with CMake 3.25.1 on Debian
if(NOT Protobuf_PROTOC_EXECUTABLE)
message(SEND_ERROR
"The protobuf compiler (protoc) could not be found. "
"Is it installed and working properly?")
endif()
protobuf_generate_cpp(XML_LPM_FUZZER_PROTO_SRCS
XML_LPM_FUZZER_PROTO_HDRS
fuzz/xml_lpm_fuzzer.proto)