diff options
author | Brad King <brad.king@kitware.com> | 2013-07-26 13:01:19 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-07-26 13:01:19 (GMT) |
commit | dda6e9366688332e592f5d269bf93f9732151d4d (patch) | |
tree | 70e4b6e14137d48631b25249d84a93b40c5fdd66 /Source/cmExportFileGenerator.cxx | |
parent | c82b1cbe83d8738815fb741432f03533c033a236 (diff) | |
parent | d777b8e7167e0c1a3de4ebcf66fac5fc604f1dd9 (diff) | |
download | CMake-dda6e9366688332e592f5d269bf93f9732151d4d.zip CMake-dda6e9366688332e592f5d269bf93f9732151d4d.tar.gz CMake-dda6e9366688332e592f5d269bf93f9732151d4d.tar.bz2 |
Merge topic 'install-interface-relative'
d777b8e Genex: Allow relative paths in INSTALL_INTERFACE.
Diffstat (limited to 'Source/cmExportFileGenerator.cxx')
-rw-r--r-- | Source/cmExportFileGenerator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmExportFileGenerator.cxx b/Source/cmExportFileGenerator.cxx index ba0d00b..36802b5 100644 --- a/Source/cmExportFileGenerator.cxx +++ b/Source/cmExportFileGenerator.cxx @@ -302,7 +302,8 @@ void cmExportFileGenerator::PopulateIncludeDirectoriesInterface( const char* sep = input ? ";" : ""; includes += sep + tei->InterfaceIncludeDirectories; std::string prepro = cmGeneratorExpression::Preprocess(includes, - preprocessRule); + preprocessRule, + true); if (!prepro.empty()) { this->ResolveTargetsInGeneratorExpressions(prepro, target, |