diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-01-12 11:13:19 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-01-15 19:36:22 (GMT) |
commit | 522bdac14963acf7c147f5518ea51382b042bf96 (patch) | |
tree | a52af802f40343b92da941080225ad0c2ea21e4d /Source/cmExportBuildFileGenerator.cxx | |
parent | 4ee872cb99f49ac5a95768da454f3313ba87182f (diff) | |
download | CMake-522bdac14963acf7c147f5518ea51382b042bf96.zip CMake-522bdac14963acf7c147f5518ea51382b042bf96.tar.gz CMake-522bdac14963acf7c147f5518ea51382b042bf96.tar.bz2 |
Export the INTERFACE_PIC property.
Diffstat (limited to 'Source/cmExportBuildFileGenerator.cxx')
-rw-r--r-- | Source/cmExportBuildFileGenerator.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmExportBuildFileGenerator.cxx b/Source/cmExportBuildFileGenerator.cxx index 36c53dc..61e130d 100644 --- a/Source/cmExportBuildFileGenerator.cxx +++ b/Source/cmExportBuildFileGenerator.cxx @@ -72,6 +72,8 @@ bool cmExportBuildFileGenerator::GenerateMainFile(std::ostream& os) this->PopulateInterfaceProperty("INTERFACE_COMPILE_DEFINITIONS", te, cmGeneratorExpression::BuildInterface, properties, missingTargets); + this->PopulateInterfaceProperty("INTERFACE_POSITION_INDEPENDENT_CODE", + te, properties); this->GenerateInterfaceProperties(te, os, properties); } |