summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/export
Commit message (Collapse)AuthorAgeFilesLines
* export: Reject custom target exports earlier (#15657)Brad King2015-07-214-0/+8
| | | | | Diagnose and reject custom targets given to the export() command immediately. Previously we would generate an internal error later.
* Tests: Teach RunCMake.export to enable languages only when neededBrad King2015-07-215-3/+5
|
* export: Implement EXPORT subcommand (#9822)Stephen Kelly2013-12-2410-0/+39
| | | | | | Teach the export command to handle export sets defined by invocations of install(TARGETS ... EXPORT foo). This makes maintenance of targets exported to both the build tree and install tree trivial.
* export(): Check targets exist at configure-time (#14608)Stephen Kelly2013-12-045-0/+12
Commit 66b290e7 (export(): Process the export() command at generate time., 2012-10-06 ) refactored export() so that it could evaluate strings at generate-time. This was intended for evaluating target properties, but that commit also removed a check for target existence at configure-time. Restore that check and add a test for this case.