Closed ravenexp closed 1 year ago
I'm catching up on pull requests that slipped through, sorry for the delay. I see this would be a breaking change since the InstallCommandBuilder would no longer accept a single profile argument - ideally I think it would be best to add a wrapper that accepts profile to both host and target profiles internally for backwards compatibility. For now, I'll just merge it
I'm catching up on pull requests that slipped through, sorry for the delay. I see this would be a breaking change since the InstallCommandBuilder would no longer accept a single profile argument - ideally I think it would be best to add a wrapper that accepts profile to both host and target profiles internally for backwards compatibility.
Not really, InstallCommandBuilder::with_profile()
becomes just an alias for InstallCommandBuilder::with_host_profile()
.
It is a backward compatible change:
Conan supports separate host and build profiles since version 1.24.
Setting the build profile is required when cross-compiling using the modern toolchain-based CMake generator.
Add a new
InstallCommandBuilder
unit test.