Tasks-Explorer icon indicating copy to clipboard operation
Tasks-Explorer copied to clipboard

Quite hard even to compile project after introducing lots of external dependencies

Open alfishe opened this issue 8 years ago • 2 comments

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

alfishe avatar Sep 24 '16 19:09 alfishe

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.

astavonin avatar Sep 25 '16 03:09 astavonin

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

alfishe avatar Sep 26 '16 04:09 alfishe