James
James
I am checking this, and this works: ``` [settings] arch=x86_64 os=Windows compiler=gcc compiler.version=6 compiler.libcxx=libstdc++11 [conf] tools.microsoft.bash:subsystem=msys2 tools.microsoft.bash:path=C:/ws/msys64/usr/bin/bash.exe tools.env.virtualenv:auto_use=True [buildenv] PATH=+(path)C:/ws/msys64/usr/bin ``` ```python from conan import ConanFile class HelloConan(ConanFile): name =...
Hi @blockspacer Sorry, this is not clear. You are saying that you are using the new CMake integration, and have the configuration for it defined (for ``CMakeToolchain`` and ``CMakeDeps``). Still,...
There is something weird in your log, the ``hello`` package seems to already exist, like it was created previously succesfully, and it is failing in the ``test_package`` step only: >...
> I want to package library that was built with specific set of options/requirements. I'm trying to use conan export-pkg for this It is not fully clear how you built...
Hi @himansu2906 Please try to format the above correctly. A couple of quick hints: - ``include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)`` and the ``cmake`` generators are legacy. You should be moving to ``CMakeDeps`` and ``CMakeToolchain``...
Hi @EstebanDugueperoux2 Quick question: If I understand correctly, all the other operations with Conan, downloads, uploads, installs, from Conan repos, etc, work well, no HTTPS errors at all? Because what...
Yes, the ``conan_build_info`` is an independent application, it practically doesn't share logic with the Conan client, so it will not be reading or using those variables. It assumes the necessary...
Just tried here, in Windows: ```bash $ conan --version 1.52.0 $ conan install boost/1.71.0@ .... all ok ``` Works fine. Your conan installation might not have upgraded correctly or something...
It might be possible that you have another Conan installation elsewhere in the system? are you using virtualenvs? Maybe ``which/where conan`` can help?
Hi @SirCosty This recent blog post has some hints: https://blog.conan.io/2022/09/20/consuming-recipes-during-migration-conancenter.html Poor people working in enterprise companies (most of Conan users :) ) should definitely use their own repo, with their...