conan
conan copied to clipboard
Conan - The open-source C and C++ package manager
I would like a flag on `pyinstaller.py` to toggle the use of `--onefile` when running the pyinstaller command. This would bundle all components into one executable, a portable monolithic Conan....
Conan supports many cmake generators: * cmake * cmake_multi * cmake_paths * cmake_find_package * cmake_find_package_multi * CMakeDeps Currently we use **cmake** and **cmake_multi** but they have a huge limitation (no...
Hi, I'm using Conan for fetching some 3rd party libraries into my project. amongst are boost and libarchive. Recently, I've advanced the version of those 2 libraries in Conan.txt, and...
Hello All, I am new to conan and currently trying to create library package and I am using tricore-gcc compiler. whenever I am trying to create package it is giving...
On windows `self.info.settings` sometimes doesn't contain toolset even if it exists at `self.settings` ### Steps to reproduce (Include if Applicable) ```python from conans import ConanFile class TestConanfile(ConanFile): settings = "compiler"...
[bug] Using a version range with conan install -u leads to an error in case of empty package cache
I am having an empty Conan package cache resp. the package I want to install is not available in the local package cache. When I now type in `conan install...
## Problem statement Right now it is common to use a different compiler for `conan install` and CMake configure steps which result in an error during project configuration. ## Potential...
### Feature Request Provide a GUI program, for example `conan-gui`, for users to install/uninstall packages or do other operations. Just like CMake, we can use either [`cmake`](https://cmake.org/cmake/help/latest/manual/cmake.1.html) or [`cmake-gui`](https://cmake.org/cmake/help/latest/manual/cmake-gui.1.html) to...
### Environment Details (include every applicable attribute) * Operating System+version: Windows 10 * Compiler+version: Visual Studio 16 2019 * Conan version: 1.48.0 * Python version: 3.9 (with numpy installed) ###...
I have a CMake project and in the CMakeLists.txt file I generate two targets: **add_library(myproj::mylib ...)** and **add_executable(myproj::myexec ...)**. The Conan documentation explains well what to write in the **package_info()**...