Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ORC-1732: [C++] Fix detecting Homebrew-installed Protobuf on MacOS #1963

Closed
wants to merge 10 commits into from
Prev Previous commit
Next Next commit
Update cmake_modules/FindProtobuf.cmake
Co-authored-by: Sutou Kouhei <[email protected]>
  • Loading branch information
luffy-zh and kou authored Jul 9, 2024
commit 7ddf8ced61c8223f85313d133323d4b0834a47e2
2 changes: 1 addition & 1 deletion cmake_modules/FindProtobuf.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ if (Protobuf_FOUND)
if (NOT PROTOBUF_INCLUDE_DIR)
set (PROTOBUF_INCLUDE_DIR ${Protobuf_INCLUDE_DIRS})
if (NOT PROTOBUF_INCLUDE_DIR)
message(FATAL_ERROR "Cannot determine Protobuf include directory from protobuf::libprotobuf and Protobuf_INCLUDE_DIRS.")
message (FATAL_ERROR "Cannot determine Protobuf include directory from protobuf::libprotobuf and Protobuf_INCLUDE_DIRS.")
endif ()
endif ()
else ()
Expand Down
Loading