I'm new to Conan but experienced with cmake/make/studio etc.
I'm trying to build a simple program that uses a library (uWebSockets) that uses another library (uSockets) that uses another library (libuv). The libraries aren't important to the question, it's just that there's a chain of dependencies.
I found libuv in conan central and all ok.
The uSockets lib is makefile only but I added cmake and I think added Conan support. A sample compiles and runs, so I'll take that as ok.
But... How can I use my fresh uSockets lib locally?
I don't want to publish it anywhere, just use it in the build of uWebSockets, and then use that build for my executable.
I'm looking for something like "Conan publish local" I think.
Any help would be appreciated!