diff options
author | Brad King <brad.king@kitware.com> | 2002-09-17 14:56:18 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-09-17 14:56:18 (GMT) |
commit | e5e0132203ab8b8c2391ad7847cf2204d1e44639 (patch) | |
tree | 30d559407bd0f6077ed040636d0d4b98400544aa /Source/cmInstallProgramsCommand.h | |
parent | 222b04f6d9a73d202faea473ab1c5c7991ca75e6 (diff) | |
download | CMake-e5e0132203ab8b8c2391ad7847cf2204d1e44639.zip CMake-e5e0132203ab8b8c2391ad7847cf2204d1e44639.tar.gz CMake-e5e0132203ab8b8c2391ad7847cf2204d1e44639.tar.bz2 |
ENH: Improved implementation of INSTALL_FILES and INSTALL_PROGRAMS commands. Source paths can now be relative or full paths, and don't need to be in the same directory as the CMakeLists.txt file.
Diffstat (limited to 'Source/cmInstallProgramsCommand.h')
-rw-r--r-- | Source/cmInstallProgramsCommand.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmInstallProgramsCommand.h b/Source/cmInstallProgramsCommand.h index 7a19297..1ab5a97 100644 --- a/Source/cmInstallProgramsCommand.h +++ b/Source/cmInstallProgramsCommand.h @@ -77,7 +77,9 @@ public: cmTypeMacro(cmInstallProgramsCommand, cmCommand); - private: +protected: + std::string FindInstallSource(const char* name) const; +private: std::string m_TargetName; std::vector<std::string> m_FinalArgs; }; |