conan icon indicating copy to clipboard operation
conan copied to clipboard

Conan - The open-source C and C++ package manager

Results 760 conan issues
Sort by recently updated
recently updated
newest added

### Environment details * Operating System+version: Windows 11 Pro N 23H2 22631.3155 * Compiler+version: Visual Studio 2022 * Conan version: 2.1.0 * Python version: 3.12.1 ### Steps to reproduce The...

### What is your suggestion? Hello. Thank you for taking the time to read this. https://github.com/conan-io/conan/issues/3099 could be very handy for my use case, although workarounds exist. Please note that...

stage: triaging

Hi, is there a possibility to include the conan_provider.cmake script from inside of a CMakeLists.txt file like it was done with the conan.cmake file in conan v1, instead of passing...

Changelog: (Fix): Extract .zip files with recorded file timestamps Proposed fix for #15268. Timestamps need to be set after directories have been populated, because directory timestamps are updated whenever a...

type: look into

Changelog: Feature: Created `find_libraries` function (alternative to `collect_libs`). Docs: https://github.com/conan-io/docs/pull/XXXX

### What is your question? Hello! I have some questions about how exactly I import modules that I have installed via Conan to my C and C++ projects. I have...

type: question

### What is your question? Hi, can I somehow trigger a generator without using conan install, which downloads all binaries? Also conan lock install downloads either binaries or if using...

type: question
staled

### What is your question? Hello, I'm attempting to exporting an ADK as a conan package using conanfile.py and two commands. Steps: - Move to ADK directory and create a...

type: question
staled

### What is your question? Hello, I have a question regarding boost dependencies. My recipe looks like this: ```txt [requires] boost/1.81.0 [options] boost*:shared=True ``` However, when running `conan graph explain...

### What is your question? example use case ``` from conan.tools.build import valid_max_cppstd def package_id(): if self.info.settings.get_safe("compiler.cppstd") and not valid_max_cppstd(self, "14"): self.info.settings.compiler.cppstd = "14" def generate(): cppstd = self.settings.get_safe("compiler.cppstd") if...

type: look into