ENH: Fixed INSTALL_FILES and INSTALL_PROGRAMS commands to not create targets. No targets of type cmTarget::INSTALL_FILES or cmTarget::INSTALL_PROGRAMS are created, so we do not need to check for them everywhere anymore.

This commit is contained in:
Brad King
2007-05-23 15:40:12 -04:00
parent 303b4312b2
commit ba7780a3c4
14 changed files with 64 additions and 95 deletions

View File

@@ -101,8 +101,9 @@ public:
protected:
std::string FindInstallSource(const char* name) const;
private:
std::string TargetName;
std::vector<std::string> FinalArgs;
std::string Destination;
std::vector<std::string> Files;
};