Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cmNinjaTargetGenerator: do not order-depend on C++ module sources | Ben Boeckel | 2023-10-20 | 1 | -0/+6 |
| | | | | | | | | | C++ module sources should not be included by any other TUs, so their presence cannot matter for order-only dependencies of the entire target. Exclude them. Update CMP0154 to take this into consideration and add tests to the `CXXModules` suite (which already deals with module support detection). | ||||
* | Ninja: Allow compilation before generation of dependencies' private sources | Martin Duffy | 2023-09-20 | 1 | -0/+53 |
This requires knowing when a generated header is public, which we can model using file sets. Add policy CMP0154 to treat generated sources as private by default in targets with file sets. Generated public headers can be specified in public file sets. Fixes: #24959 Issue: #15555 |