Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add rpath entries for all found libraries outside of system libraries.prebuilt | Jussi Pakkanen | 2017-10-02 | 1 | -4/+9 |
| | |||||
* | Added release note snippet for prebuilt shared libs. | Jussi Pakkanen | 2017-09-30 | 1 | -0/+15 |
| | |||||
* | Allow CustomTarget's to be indexed | Dylan Baker | 2017-09-27 | 1 | -0/+21 |
| | | | | | | | | | | | This allows a CustomTarget to be indexed, and the resulting indexed value (a CustomTargetIndex type), to be used as a source in other targets. This will confer a dependency on the original target, but only inserts the source file returning by index the original target's outputs. This can allow a CustomTarget that creates both a header and a code file to have it's outputs split, for example. Fixes #1470 | ||||
* | Permit overriding find_program from the cross file. | Jussi Pakkanen | 2017-09-04 | 1 | -0/+15 |
| | |||||
* | Add Compiler.get_supported_arguments() | Daniel Stone | 2017-08-31 | 1 | -0/+23 |
Add a helper for the common pattern of: args_to_use = [] foreach arg : candidate_args if cc.has_argument(arg) args_to_use += arg endif endforeach Replaced with: args_to_use = cc.get_supported_arguments(candidate_args) |