cmake-conan icon indicating copy to clipboard operation
cmake-conan copied to clipboard

CMake wrapper for conan C and C++ package manager

Results 215 cmake-conan issues
Sort by recently updated
recently updated
newest added

`detect_compiler()` takes only major version of apple-clang which is invalid. ``` $ clang --version Apple clang version 12.0.0 (clang-1200.0.32.2) $ git clone https://github.com/conan-io/cmake-conan.git -b develop2 $ cd cmake-conan/example $ mkdir...

The official Windows installer [1] by default installs conan to `%ProgramFiles%\Conan\conan\conan.exe`. Add this subdirectory to the find_package call on Windows. [1] - https://conan.io/downloads

I got an error when trying out the plugin in Clion on my project: ``` CMake Error at conan_provider.cmake:212 (message): CMake-Conan: unable to map MSVC runtime: $$ to Conan settings...

This adds a new `CONAN_CONANFILE_TXT_PATH` variable that can be passed to the cmake invocation to specify a conanfile path instead of forcing the location to be in the current source...

The develop2 branch appears to require you to have conanfile.py or conanfile.txt in the root of your project. We're only using conan on Windows, so we're storing our conanfile with...

### What is your question? Hi, I have to start using conan 2.0. In conan 1.x, I am using conan_cmake_configure to generate conanfile.txt . How can I achieve this in...

When I updated to the latest version of `conan_provider.cmake`, I started getting this error in a build that depends on the `sdl` conan package (which, in turn, depends on `libiconv`):...

When we have a `conanfile.py` (as opposed to a `conanfile.txt`), and `CMakeDeps` is instantiated in the `generate()` method (as opposed to as the `generators`) attribute, CMake configuration fails with the...

bug

Hi, inb4: thanks a lot for your work on conan and auto-enabling it with cmake! It is well appreciated. I am currently migrating a project from conan 1 to conan...