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

CMake wrapper for conan C and C++ package manager

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

For the stock `PROFILE`, conan has a `CONAN_DEFAULT_PROFILE_PATH` environment variable. But this does not provide a way to do many newer conan features, like multiple profiles, or `--profile:host` vs `--profile:build`....

In my case, my default compiler is GCC, and I am trying to build my project by using clang. ``` Conan executing: conan install . -g cmake -s build_type=Release -s...

Hi, I had to put glib/2.67.0 (cairo dependency) to build from source as there is libc incompatibility (pre-built glib requires libc 2.28 while I have only 2.27 on the system)...

question

Hi, I'm new to conan and I tried a couple of setup options to get started. With a rather "basic" configuration (a seemingly correct default profile + conanfile.txt + a...

I had an experimental scenario where I use the `conan.cmake`-file to call ``` conan_cmake_run(REQUIRES poco/1.10.1 BUILD_TYPE "Release" BASIC_SETUP CMAKE_TARGETS GENERATORS cmake_find_package cmake_paths OPTIONS ${CONAN_OPTIONS} BUILD missing) ``` However, my project...

`conan-cmake` nicely seems to infer the compiler version from the cmake configuration: e.g. when my build is configured to use gcc-10 conan is invoked via: ``` -- Conan executing: /home/tim/.local/bin/conan...

Using `cmake-conan` with `virtualrunenv`, I create an `activate_run.sh` which I need because I am using a custom conan-built Qt 5 with autogen and a custom `icu` version, so `uic` can...

If I use test code that is provided within this repository, then CONAN_XXX variables are not defined. For example: ```cmake cmake_minimum_required(VERSION 2.8.12) project(FormatOutput) add_definitions("-std=c++11") if(NOT EXISTS "${CMAKE_BINARY_DIR}/conan.cmake") message(STATUS "Downloading conan.cmake...

I am getting while using version 0.8. ``` CMake Error at build/Debug/conan.cmake:61 (message): cmake system Emscripten is not supported by conan. Use one of Windows;Linux;Macos;Android;iOS;FreeBSD ``` Here is how my...

Hello, first of all- thank you for your work, its a great tool! I'm having a small issue with macos though, i'm not entirely sure if its related to cmake,...