diff options
author | Brad King <brad.king@kitware.com> | 2019-09-26 13:51:41 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-09-26 13:51:55 (GMT) |
commit | 3cb12895f3d99614ac30bd2f7703f721154b7068 (patch) | |
tree | 5662474798f47b019632405819ae290917cbf38a /Source | |
parent | a29b8d285e176b40c9c5f1ce506dd97ed38f9c97 (diff) | |
parent | c54448e1855432de95844d4d0546bbe6d7f47c84 (diff) | |
download | CMake-3cb12895f3d99614ac30bd2f7703f721154b7068.zip CMake-3cb12895f3d99614ac30bd2f7703f721154b7068.tar.gz CMake-3cb12895f3d99614ac30bd2f7703f721154b7068.tar.bz2 |
Merge topic 'pch-export'
c54448e185 PCH: Propagate INTERFACE_PRECOMPILE_HEADERS in install(EXPORT)
Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Cristian Adam <cristian.adam@gmail.com>
Merge-request: !3862
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmExportInstallFileGenerator.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmExportInstallFileGenerator.cxx b/Source/cmExportInstallFileGenerator.cxx index 0009b3a..1e843b6 100644 --- a/Source/cmExportInstallFileGenerator.cxx +++ b/Source/cmExportInstallFileGenerator.cxx @@ -94,6 +94,9 @@ bool cmExportInstallFileGenerator::GenerateMainFile(std::ostream& os) this->PopulateInterfaceProperty("INTERFACE_COMPILE_OPTIONS", gt, cmGeneratorExpression::InstallInterface, properties, missingTargets); + this->PopulateInterfaceProperty("INTERFACE_PRECOMPILE_HEADERS", gt, + cmGeneratorExpression::InstallInterface, + properties, missingTargets); this->PopulateInterfaceProperty("INTERFACE_AUTOUIC_OPTIONS", gt, cmGeneratorExpression::InstallInterface, properties, missingTargets); |