conan
conan copied to clipboard
Conan - The open-source C and C++ package manager
### What is your question? Hi! I have a question regarding the conan2 python API. I have a `PkgReference` and want to determine all the dependencies that this package has...
### Describe the bug The documentation for `conan install` documents a `--requires` option. https://docs.conan.io/2/reference/commands/install.html However, `conan graph build-order` output "build_args", which is documented to be intended to be used with...
### Describe the bug The way that this page is written: https://docs.conan.io/2/devops/backup_sources/sources_backup.html It sounds as though configuring something like.. ```global.conf core.sources:download_urls = ["https://myremote", "origin"] ``` ..should produce the effect that...
### What is your question? I have encountered an issue with a [library](https://github.com/SpartanJ/efsw/blob/341934765471e4074e90bb5205ff4a65c16499c6/CMakeLists.txt#L102-L104) that uses `CMAKE_SYSTEM_VERSION` to disable a feature. When cross-compiling it on macOS Apple Silicon for macOS Intel,...
### What is your question? Hi! I have a question about the recommended way to deal with a set of imported CMake libs with circular dependencies in Conan. I'm building...
As stated in the CMake documentation when in Apple systems [CMAKE_SYSTEM_VERSION](https://cmake.org/cmake/help/latest/variable/CMAKE_SYSTEM_VERSION.html) is the version for the Darwin version, but we are setting the sdk version, which does not seem correct....
### What is your suggestion? I use conan to manage packages built against the GDK, the Microsoft framework for developing games. This platform - is Windows - has a Win32...
### Describe the bug [conan_update_revision.zip](https://github.com/conan-io/conan/files/15328652/conan_update_revision.zip) Conan 2.3 The `--update` option says: ``` Will install newer versions and/or revisions in the local cache for the given reference, or all in case...
### What is your question? ## profiles ``` [settings] arch=x86_64 build_type=Release compiler=gcc compiler.cppstd=gnu17 compiler.libcxx=libstdc++11 compiler.version=13 os=Windows ``` ## conanfile ``` [requires] opencv/4.9.0 [generators] CMakeDeps CMakeToolchain [layout] cmake_layout ``` ## Log...
### What is your question? Hi, I stumbled across the following: Let's assume my package has the following requirements `requires = ["libA/0.1.0"]` This libA in turn depends on some libB...