Tasks-Explorer
Tasks-Explorer copied to clipboard
Quite hard even to compile project after introducing lots of external dependencies
I've found that at least following dependencies needs to be installed
- brew install cmake
- brew install protobuf
- brew install boost
Seems grpc is also used but when installed brew install --with-plugins grpc it conflicts with protobuf installation Still unable to compile due to following errors: CMake Error: The following variables are used in this project, but they are set to NOTFOUND. Please set them or make sure they are set and tested correctly in the CMake files: GPR_LIBRARY linked by target "rpc" in directory /Users/dev/Projects/GitHub/Tasks-Explorer/rpc GRPCPP_LIBRARY linked by target "rpc" in directory /Users/dev/Projects/GitHub/Tasks-Explorer/rpc GRPC_LIBRARY linked by target "rpc" in directory /Users/dev/Projects/GitHub/Tasks-Explorer/rpc
Could you please add full script how to install all pre-requisites on a clean Mac OS X (El Capitan/Sierra) with XCode and homebrew installed only? That will help much
Thanks, it's really quite tricky. Please follow next instructions for installing gRPC: https://github.com/grpc/homebrew-grpc I'll create detailed description later.
Ok, thank you.
Seems the following sequence is sufficient to build it:
- brew install cmake
- brew install boost
- brew tap grpc/grpc
- brew install --with-plugins grpc