summaryrefslogtreecommitdiff
path: root/Source/cmExportFileGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-01-28 13:05:58 -0500
committerBrad King <brad.king@kitware.com>2008-01-28 13:05:58 -0500
commit28ea03473785eddce544704306a239407a8f79bb (patch)
treeee4df3ce5aebf8d96f679db2b26304efb90fe9ba /Source/cmExportFileGenerator.cxx
parent3d94b3b7170b17f119608a896f2e86cba23b6c5b (diff)
downloadcmake-28ea03473785eddce544704306a239407a8f79bb.tar.gz
ENH: Support exporting/importing of Framework targets.
- Imported frameworks have the FRAMEWORK property set - Added cmTarget::IsFrameworkOnApple method to simplify checks - Also remove separate IMPORTED_ENABLE_EXPORTS property and just use ENABLE_EXPORTS since, like FRAMEWORK, it just represents the target type. - Document FRAMEWORK keyword in INSTALL command. - Updated IMPORTED_LOCATION property documentation for Frameworks
Diffstat (limited to 'Source/cmExportFileGenerator.cxx')
-rw-r--r--Source/cmExportFileGenerator.cxx13
1 files changed, 12 insertions, 1 deletions
diff --git a/Source/cmExportFileGenerator.cxx b/Source/cmExportFileGenerator.cxx
index ec4bc33469..2c916e54e6 100644
--- a/Source/cmExportFileGenerator.cxx
+++ b/Source/cmExportFileGenerator.cxx
@@ -237,10 +237,21 @@ cmExportFileGenerator
default: // should never happen
break;
}
+
+ // Mark the imported executable if it has exports.
if(target->IsExecutableWithExports())
{
os << "SET_PROPERTY(TARGET " << targetName
- << " PROPERTY IMPORTED_ENABLE_EXPORTS 1)\n";
+ << " PROPERTY ENABLE_EXPORTS 1)\n";
+ }
+
+ // Mark the imported framework. This is done even on non-Apple
+ // platforms for reference and consistency purposes.
+ if(target->GetType() == cmTarget::SHARED_LIBRARY &&
+ target->GetPropertyAsBool("FRAMEWORK"))
+ {
+ os << "SET_PROPERTY(TARGET " << targetName
+ << " PROPERTY FRAMEWORK 1)\n";
}
os << "\n";
}