summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-02-19 22:27:47 (GMT)
committerBrad King <brad.king@kitware.com>2006-02-19 22:27:47 (GMT)
commit8dd00d5b1efe13b571a1d8fefc7dca317cdb826c (patch)
tree9eb09e139a8cd2f45154d91d60a5b249ac055dbb /Source/cmTarget.h
parentb6e4bc0521290b18d0914d21e19f31f66b328140 (diff)
downloadCMake-8dd00d5b1efe13b571a1d8fefc7dca317cdb826c.zip
CMake-8dd00d5b1efe13b571a1d8fefc7dca317cdb826c.tar.gz
CMake-8dd00d5b1efe13b571a1d8fefc7dca317cdb826c.tar.bz2
BUG: Fixed relink with new install framework.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r--Source/cmTarget.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h
index 1d061f5..a0af8c4 100644
--- a/Source/cmTarget.h
+++ b/Source/cmTarget.h
@@ -129,7 +129,13 @@ public:
*/
std::string GetRuntimeInstallPath() {return m_RuntimeInstallPath;}
void SetRuntimeInstallPath(const char *name) {m_RuntimeInstallPath = name;}
-
+
+ /**
+ * Get/Set whether there is an install rule for this target.
+ */
+ bool GetHaveInstallRule() { return m_HaveInstallRule; }
+ void SetHaveInstallRule(bool h) { m_HaveInstallRule = h; }
+
/**
* Generate the SourceFilesList from the SourceLists. This should only be
* done once to be safe.
@@ -309,6 +315,7 @@ private:
std::vector<std::string> m_Frameworks;
std::vector<std::string> m_LinkDirectories;
std::vector<std::string> m_ExplicitLinkDirectories;
+ bool m_HaveInstallRule;
std::string m_InstallPath;
std::string m_RuntimeInstallPath;
std::string m_Directory;