summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r--Source/cmTarget.h13
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;