-
Notifications
You must be signed in to change notification settings - Fork 12
Description
It would be nice if my CPS files could describe how my library was built without be prescriptive to downstream consumers about how they should build.
For instance, it would be helpful to know that my library was built for C++20. It would not be helpful for my library to require all of its users to use a specific flag setting the C++ standard to 20. That goes in a build toolchain file, a build configuration file, or something of that nature.
I expect this information would be used to quickly ascertain incompatibilities across dependencies in clear ways that are not possible at the moment. In fact, it's is possible at the moment that a mismatching C++ standard, for instance, will compile and link fine but cause runtime issues in an production environment.