conan
conan copied to clipboard
Conan - The open-source C and C++ package manager
Changelog: Fix: If Conan fails to load a custom command now it fails with a useful error message. Docs: omit Closes https://github.com/conan-io/conan/issues/11702
As it fails at import time, it no longer can execute anything, and the traces are confusing. I think it should be necessary to wrap the error and include a...
The Conan documentation states: > If you declare a layout() in the recipe and your CMakeLists.txt file is found in the conanfile.source_folder folder, Conan will place a CMakeUserPresets.json to include...
* Add a PythonVirtualEnv helper to facilitate the creation and management of python virtual environments. This provides some much needed functionality to enable python dependencies to be managed from within...
Changelog: (Bugfix): Fix the test `TestConanFileSubfolder` which should actually fail. Issue: #11275 This test should be written like this, and will fail because the bug is not yet fixed. (if...
Hello, we develop our software in a mono repo. ``` ├── mylibA │ └── conanfile.py ├── mylibB │ └── conanfile.py └── mylibC └── conanfile.py ``` To our consumers we do...
`cpp_info` is not being propagated correctly when using a private requirement in cross compile mode. [Here is example source to reproduce the issue](https://github.com/smoofra/conan-bug) ### Environment Details * Mac OS 12.3.1...
Changelog: Omit Docs: Omit Tested, all with CMake: - Windows LLVM/Clang with mingw generator - Windows LLVM/Clang with Ninja and NMake generators - Windows LLVM/Clang Using different versions of the...
There are many ways how to use clang on windows and we need to define how to handle most of them. Usecases are: GNU-style, using gcc runtime and command line...
Recently added support for ``v14x_xp`` toolsets, but still missing the clang/llvm ones. It seems the idea would be: - The compiler is clang - Add necessary information to settings or...