James
James
Hi @maichmueller I think this sounds more like a "conan.cmake" issue, not a Conan one, we might want to move it that repo, I am moving it there. Also, it...
> thanks for your answer. I have just downloaded the conanfile.py for gtest 1.10 from https://conan.io/center/gtest/1.10.0/?user=_&channel=_&revision=&os=&tab=recipe and replaced the old one with it, but that didn't fix the problem. the...
Hi @qcfe This might be a requirement of the ``cmake-conan``, that needs the ``CMAKE_BUILD_TYPE`` defined. Conan, to install dependencies, needs a "profile" defined, that needs to define Release, Debug, etc...
It would also be important to know if using ``libc++`` is the intended one. @lorenzzhao do you have something in your CMakeLists.txt that defines this stdlib? Otherwise it would be...
It seems that this is an issue of the ``cmake.conan``, that is not translating the IntelLLVM to the corresponding Conan setting. That conversion happens in the conan.cmake file, not in...
Hi @AlessandroFasse The new ``intel-cc`` is not be supported fully by the "legacy" integrations, only by the new ones in ``conan.tools.xxx`` domain like ``CMakeToolchain``, ``AutotoolsToolchain``, etc. ConanCenter recipes have not...
I have added the definition of the CONAN_IMPORT_PATH as environment variable from the conan.cmake in https://github.com/conan-io/cmake-conan/commit/36f25ff678cc32dd95caafe0acde9de34c0f1591. It is in develop branch (the main branch of https://github.com/conan-io/cmake-conan), so if you could...
I see. I'd recommend to provide your own conanfile.py, and call it from the cmake providing the CONANFILE parameter. It will probably be cleaner and easier to extend for other...
Hi @srud-irobot ! > Should conan_cmake_run be called before any directory compile or linker options are set (or any other generator expression capable commands are called) Probably yes. ``conan_cmake_run`` is...
This seems a complicated cross-build scenario, I am not sure I understood correctly: are you saying that this works without cmake-conan (but Conan commands, etc), but fails only with cmake-conan?...