mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 13:45:00 +00:00
Merge pull request #951 from libexpat/fuzzers-check-for-protobuf-compiler
fuzzers|cmake: Check for availability of protobuf compiler
This commit is contained in:
commit
079fc26a06
1 changed files with 8 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue