Replies: 2 comments 14 replies
The first thing you might want to try is defeating the matching failure by escaping the square brackets. |
2 replies
What @devbww said. That means the libraries did not get installed. I expect this will work:
Assuming you are not using vcpkg for the rest of your build, maybe you need to compile https://github.com/googleapis/google-cloud-cpp/blob/main/doc/packaging.md I don't know if we have a test for it, but looks right to me. |
12 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Background: I'm using cmake, which I have several projects building with, but I can't say I'm an expert. Also, this is my first time using a C++ manager like vcpkg. I'm building on macOS.
what works
I've been able to check out the repo, follow the instructions here to build, and run samples from that build.
what doesn't
When I try to build the quickstart, I get this error:
If I ignore that error, and push onward, I get this error:
FWIW, my long term goal is to use the storage part of this library in a larger cmake project that already builds on macOS and Linux. (Before I used cmake, I tried to use the google-cloud-cpp library, but gave up and built a Go c-archive that I call from C++. It works, but now that I'm on cmake for the C++ build, I think it makes more sense to try and use the C++ library now.)
All reactions