Dmitry Bely
Dmitry Bely
I ran into a similar issue (periodical 502 or 503 HTTP errors in CI jobs). Artifactory docs indicate that it handles at most 200 active HTTP connections by default: >...
@memsharded I think I've sorted it down. It's not Conan client but nginx that I use as a HTTP redirector to the actual Artifactory instance. For the record, I've configured...
@memsharded [The Recommended Nginx Reverse Proxy Configuration for Artifactory 7](https://jfrog.com/knowledge-base/what-is-the-recommended-nginx-reverse-proxy-configuration-for-artifactory-7-x-and-above/) seems to works for me without issues. I wish I looked into the Jfrog knowledge base before asking questions here...
@memsharded > `CMakeDeps` is the only one that will survive in Conan 2.0 What about conan-cmake, can `CMakeDeps` be the only generator for it? And how to do something like...
> As `conan-cmake` takes CMake config and convert to Conan settings, this would be unnecessary, and the CMakeToolchain would be redundant (only used in the cache when `conan create`). Well,...
@memsharded Thanks a lot for the info, but I'm still struggling with a consumer recipe that uses conan-cmake/CMakeDeps. As a first step, I try to attach Boost package; files `Boost-debug-x86_64-data.cmake`...
@memsharded Thanks a lot again. BTW, there is another problem with cmake-conan: for multi-configuration generators its docs propose ```CMake foreach(TYPE ${CMAKE_CONFIGURATION_TYPES}) conan_cmake_autodetect(settings BUILD_TYPE ${TYPE}) ... endforeach() ``` but actually `conan_cmake_autodetect`...
One more question if you don't mind. Suppose I have two header-only conan packages: PkgA and PkgB, and PkgA depends on PkgB. With `cmake` generator I just did `target_link_libraries(my_target PRIVATE...
> Yes, please, report this in cmake-conan. Already reported by someone else: https://github.com/conan-io/cmake-conan/issues/336
~~Just verified it: `target_link_libraries(my_target PRIVATE PkgA::PkgA PkgB::PkgB)` works, `target_link_libraries(my_target PRIVATE PkgA::PkgA)` doesn't. I'll try to create a minimal reproducible test case.~~ Sorry, it was my fault. Actually, it works as...