Created
July 12, 2021 19:26
-
-
Save alfredodeza/8a01fd4d148b63d32e3604d065fe1237 to your computer and use it in GitHub Desktop.
OSX fixing missing cmake executable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install cmake with homebrew, which prevents: | |
# AssertionError: Could not find "cmake" executable! | |
brew install cmake | |
# and then install protobuf which fixes: | |
# CMake Error at CMakeLists.txt:292 (message): | |
# Protobuf compiler not found | |
# Call Stack (most recent call first): | |
# CMakeLists.txt:323 (relative_protobuf_generate_cpp) | |
brew install protobuf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment