diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-01-27 17:37:30 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-01-27 17:37:30 (GMT) |
commit | d13e30f3ae02444682a2e593768020b9d11b6b54 (patch) | |
tree | 1bda720a9a8f0c993a5f6c848c9328c0e455d6ef /Source/cmTarget.h | |
parent | 127872e820ea7aed784c780d29f824817193c14e (diff) | |
download | CMake-d13e30f3ae02444682a2e593768020b9d11b6b54.zip CMake-d13e30f3ae02444682a2e593768020b9d11b6b54.tar.gz CMake-d13e30f3ae02444682a2e593768020b9d11b6b54.tar.bz2 |
ENH: Make install on windows seems to work now
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 303406e..d31ca3a 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -119,6 +119,12 @@ public: std::string GetInstallPath() const {return m_InstallPath;} void SetInstallPath(const char *name) {m_InstallPath = name;} + /** + * Set the path where this target (if it has a runtime part) should be + * installed. This is relative to INSTALL_PREFIX + */ + std::string GetRuntimeInstallPath() const {return m_RuntimeInstallPath;} + void SetRuntimeInstallPath(const char *name) {m_RuntimeInstallPath = name;} /** * Generate the SourceFilesList from the SourceLists. This should only be @@ -213,6 +219,7 @@ private: std::vector<std::string> m_LinkDirectories; bool m_InAll; std::string m_InstallPath; + std::string m_RuntimeInstallPath; std::set<cmStdString> m_Utilities; bool m_RecordDependencies; std::map<cmStdString,cmStdString> m_Properties; |