Carlos Zoido
Carlos Zoido
Hi @BlueSolei, Thanks a lot for reporting and proposing the fix, we'll try to reproduce and fix the issue.
Hi @ano33, that could be a specific issue regarding your ci setup, I don't think that's related to cmake-conan. Maybe you can try to specify a different `CONAN_USER_HOME` for your...
Hi @DavidPerretSN, Thanks for reporting, I don't think we can do anything to avoid this. It would be difficult to check all those errors in conan.cmake as you have to...
Hi @asankacoder, Thanks for your feedback. The main reason for using that instead of add_definitions in Conan is that there's the possibility to do something like this in the recipes:...
Hi @akalali , There was an issue with BUILD_TYPE that could be related to this one: #89 Now, with the PR that should fix that issue: https://github.com/conan-io/cmake-conan/pull/209 I added a...
Hi @patrykgorniak, glib is building everytime because you are adding `glib/2.67.0` to the `BUILD` argument in the `conan_cmake_run` call. If you just want to build what is missing do the...
Hi @patrykgorniak, Are you running always from an empty cache? If that's the case you should create `glib/2.67.0` for your configuration before the cmake call so that when you require...
Hi @mcakircali, Could you please give me some more details of your use case and the issues you are facing? Thanks a lot
Hi @aminya, Thanks for the feedback. Only one of the two methods should be used, in fact, I think that using both of them at the same time should throw...
Hi @maddanio, Have you tried to use [imports ](https://docs.conan.io/en/latest/reference/conanfile_txt.html#imports)? Maybe doing something like: ``` set ( CONANIMPORTS "bin, *.dll -> ./bin" "lib, *.lib -> ./lib" ) include(conan.cmake) message("${CMAKE_BUILD_TYPE}") conan_cmake_run(REQUIRES zlib/1.2.8...