Luis Caro Campos

Results 315 comments of Luis Caro Campos

> So when we run conan install -s build_type=Debug ... followed by conan install -s build_type=Release ... it ends up with the Debug moc.exe. But when we run it the...

Hi @arnk-basyskom - thank you for reporting this. I believe this is a combination of pre-existing issues: * https://gitlab.kitware.com/cmake/cmake/-/issues/22678 and perhaps the fix here https://github.com/conan-io/conan/pull/13010/files#r1091019217 not working well in the...

Adding the following snippet - needs to happen after Conan has had a chance to set `CMAKE_LIBRARY_PATH` in the toolchain - will solve the issue. * cmake setting `-rpath` (which...

Thanks for reporting this @mklaust Tagging @franramirez688 - as we may need some improvements: - document and check the minimum required version of the android ndk for those variables to...

Does it work if you set your profile to use `compiler.version=192`? (these lines ` --add Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL \ --add Microsoft.VisualStudio.ComponentGroup.VC.Tools.142.x86.x64 \` indicate you are explicitly requesting the installation for the older...

Thanks @Ukilele You'd have to add ``` [conf] tools.microsoft.msbuild:vs_version=17 ``` to your profile (it's a way of telling Conan you have Visual Studio 2022 installed but wish to use the...

Thanks @Ukilele - let;'s try to troubleshoot this further. I still suspect an incomplete installation of the tools. Try to locate the "generators" folder of the recipe you're trying to...

Thanks! Could you try adding the following conf to the profile: ``` [conf] tools.microsoft.msbuild:installation_path=C:/Program Files/Microsoft Visual Studio/2022/BuildTools/ ```

Glad to hear it! Conan queries `vswhere.exe` to get the path, so it's not hardcoded. Could you run, in a fresh `cmd.exe` prompt, the following command: ``` "%ProgramFiles(x86)%\\Microsoft Visual Studio\\Installer\\vswhere.exe"...

Excellent, thanks so much! That would be the problem - there are 3 listed installations: * `"C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools"` * `C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\TestAgent` * `C:\\Program Files\\Microsoft...