diff options
author | Brad King <brad.king@kitware.com> | 2006-02-19 22:27:47 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-02-19 22:27:47 (GMT) |
commit | 8dd00d5b1efe13b571a1d8fefc7dca317cdb826c (patch) | |
tree | 9eb09e139a8cd2f45154d91d60a5b249ac055dbb /Source/cmTarget.h | |
parent | b6e4bc0521290b18d0914d21e19f31f66b328140 (diff) | |
download | CMake-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.h | 9 |
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; |