We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In case there are other people unable to install this on ubuntu, I had to change the PROTOBUF_LIBRARY in CMakeLists.txt from
PROTOBUF_LIBRARY
CMakeLists.txt
set(PROTOBUF_LIBRARY "${PROTOBUF_DIR}/lib/libprotobuf.so")
to
set(PROTOBUF_LIBRARY "${PROTOBUF_DIR}/lib/x86_64-linux-gnu/libprotobuf.so")
because the libprotobuf-dev package installs the libprotobuf.so to /usr/lib/x86_64-linux-gnu/libprotobuf.so instead of /usr/lib/libprotobuf.so.
libprotobuf-dev
libprotobuf.so
/usr/lib/x86_64-linux-gnu/libprotobuf.so
/usr/lib/libprotobuf.so
For others: the corresponding value of PROTOBUF_DIR is just /usr/.
PROTOBUF_DIR
/usr/
The text was updated successfully, but these errors were encountered:
Thanks for sharing this!
Sorry, something went wrong.
No branches or pull requests
In case there are other people unable to install this on ubuntu, I had to change the
PROTOBUF_LIBRARY
inCMakeLists.txt
fromto
because the
libprotobuf-dev
package installs thelibprotobuf.so
to/usr/lib/x86_64-linux-gnu/libprotobuf.so
instead of/usr/lib/libprotobuf.so
.For others: the corresponding value of
PROTOBUF_DIR
is just/usr/
.The text was updated successfully, but these errors were encountered: