diff options
author | Brad King <brad.king@kitware.com> | 2008-02-01 18:08:12 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-02-01 18:08:12 (GMT) |
commit | 16186ec18c0654d6fc2a9018553df53390bb9ff2 (patch) | |
tree | b128754f0e3a693e007258e582eeaf3d6110fef7 /Source/cmTarget.h | |
parent | 15741325e0393ec7a97212cf59efc3d3036c9d7d (diff) | |
download | CMake-16186ec18c0654d6fc2a9018553df53390bb9ff2.zip CMake-16186ec18c0654d6fc2a9018553df53390bb9ff2.tar.gz CMake-16186ec18c0654d6fc2a9018553df53390bb9ff2.tar.bz2 |
BUG: Remove InstallNameFixupPath from cmTarget and cmInstallTargetGenerator.
- Motivation:
- It depended on the order of installation
- It supported only a single destination for each target
- It created directory portions of an install name without user request
- Updated ExportImport test to install targets in an order that expoed
this bug
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 4d08af6..5f45c88 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -191,18 +191,6 @@ public: bool GetHaveInstallRule() { return this->HaveInstallRule; } void SetHaveInstallRule(bool h) { this->HaveInstallRule = h; } - /** - * Get/Set the path needed for calls to install_name_tool regarding this - * target. Used to support fixing up installed libraries and executables on - * the Mac (including bundles and frameworks). Only used if the target does - * not have an INSTALL_NAME_DIR property. - * See cmInstallTargetGenerator::AddInstallNamePatchRule and callers for - * more information. - */ - std::string GetInstallNameFixupPath() { return this->InstallNameFixupPath; } - void SetInstallNameFixupPath(const char *path) { - this->InstallNameFixupPath = path; } - /** Add a utility on which this project depends. A utility is an executable * name as would be specified to the ADD_EXECUTABLE or UTILITY_SOURCE * commands. It is not a full path nor does it have an extension. @@ -465,7 +453,6 @@ private: std::vector<std::string> LinkDirectories; std::set<cmStdString> LinkDirectoriesEmmitted; bool HaveInstallRule; - std::string InstallNameFixupPath; std::string InstallPath; std::string RuntimeInstallPath; std::string OutputDir; |