summaryrefslogtreecommitdiff
path: root/Source/cmInstallProgramsCommand.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2002-09-17 10:56:18 -0400
committerBrad King <brad.king@kitware.com>2002-09-17 10:56:18 -0400
commite5e0132203ab8b8c2391ad7847cf2204d1e44639 (patch)
tree30d559407bd0f6077ed040636d0d4b98400544aa /Source/cmInstallProgramsCommand.h
parent222b04f6d9a73d202faea473ab1c5c7991ca75e6 (diff)
downloadcmake-e5e0132203ab8b8c2391ad7847cf2204d1e44639.tar.gz
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.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmInstallProgramsCommand.h b/Source/cmInstallProgramsCommand.h
index 7a19297a88..1ab5a97738 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;
};