summaryrefslogtreecommitdiffstats
path: root/Tests/IncludeDirectories/TargetIncludeDirectories/main.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add $<LINK_LANGUAGE> generator expressionStephen Kelly2013-05-241-0/+1
| | | | | | They can't be used when evaluating link libraries, but they can be used for include directories and compile definitions. Later they can be used for compile options.
* Add the JOIN generator expression.Stephen Kelly2013-05-161-0/+1
| | | | | | This generator expression joins a list with a separator. The separator may contain arbitrary content, such as commas, which is ordinarily a delimiter in the generator expression syntax.
* GexEx: Validate Target names and property names differently.Stephen Kelly2012-10-221-0/+1
| | | | | In the unit test, use the same IMPORTED_LOCATION trick that the ExportImport test uses.
* GenEx: Test the use of generator expressions to generate lists.Stephen Kelly2012-10-171-0/+2
| | | | | | We can't test this in the GeneratorExpression unit test because the ';' chars are processed specically by the CMake function argument parser.
* Process generator expressions in the INCLUDE_DIRECTORIES property.Stephen Kelly2012-09-281-0/+4
| | | | | This use of generator expressions, like all others to come which operate on target properties, must initalize the dag checker.
* Extract and use the INCLUDE_DIRECTORIES target properties.Stephen Kelly2012-02-221-0/+10
Eliminate callers of cmMakefile::GetIncludeDirectories. All callers of GetIncludeDirectories should go through the local generator object. Only the local generator calls cmTarget::GetIncludeDirectories directly.