Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Genex: Allow TARGET_OBJECTS to be used everywhere | Robert Maynard | 2017-04-18 | 1 | -2/+3 |
| | | | | | | | | | Previously the `TARGET_OBJECTS` generator expression was limited only to use in a buildsystem context so that Xcode's placeholders in object file paths can be evaluated. Lift this restriction so that the expression can at least be used in most settings. Co-Author: Brad King <brad.king@kitware.com> | ||||
* | File(GENERATE): Process genex evaluation files for each language. | Stephen Kelly | 2015-03-09 | 1 | -1/+1 |
| | |||||
* | file: Add GENERATE command to produce files at generate time | Stephen Kelly | 2013-05-24 | 1 | -0/+5 |
The idea is to write to a temp file which contains generator expressions, and at generate time, evaluate the generator expressions, and write the result to a file. Because executables on Windows are limited in the length of command line it is possible to use, it is common to write command line arguments to a file instead and specify the file as a source of arguments. This new FILE(GENERATE) subcommand allows the use of generator expressions to create such files so that they can be used with add_custom_command for example. |