Our development workflow forces us to always deploy a specific 3rd party dependency in Release mode whether we're developing or releasing the final product.
I'd like to be able to make this specific build available when I'm developing, ie, all libraries are deployed in debug mode, and during release, when everything is deployed in Release mode.
I'm currently setting self.info_build.settings.build_type = "Any"
but the library is not available when deploying in Debug mode. Is the solution to have two packages, one in Release and one in Debug mode and then force CMake to always create a Release build or is there another way?