diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-06-22 13:06:46 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-06-22 13:06:46 (GMT) |
commit | 369308ca767367e5dd68fd783c830fd8a57ec751 (patch) | |
tree | df00ee1c003cb33dd70fb622dfd85fd6d2a058cb /Source/cmLocalVisualStudio7Generator.h | |
parent | 5fab6eebd651351ec3e712923cfa2d4b36788d74 (diff) | |
download | CMake-369308ca767367e5dd68fd783c830fd8a57ec751.zip CMake-369308ca767367e5dd68fd783c830fd8a57ec751.tar.gz CMake-369308ca767367e5dd68fd783c830fd8a57ec751.tar.bz2 |
ENH: make LOCATION an computed property of the target and get rid of a bunch of const junk
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.h')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.h | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.h b/Source/cmLocalVisualStudio7Generator.h index 0821d36..c8cd0ed 100644 --- a/Source/cmLocalVisualStudio7Generator.h +++ b/Source/cmLocalVisualStudio7Generator.h @@ -69,41 +69,36 @@ private: std::string& flags); void OutputVCProjFile(); void WriteVCProjHeader(std::ostream& fout, const char *libName, - const cmTarget &tgt, std::vector<cmSourceGroup> &sgs); + cmTarget &tgt, std::vector<cmSourceGroup> &sgs); void WriteVCProjFooter(std::ostream& fout); void CreateSingleVCProj(const char *lname, cmTarget &tgt); void WriteVCProjFile(std::ostream& fout, const char *libName, cmTarget &tgt); void AddVCProjBuildRule(); void WriteConfigurations(std::ostream& fout, - const char *libName, - const cmTarget &tgt); + const char *libName, cmTarget &tgt); void WriteConfiguration(std::ostream& fout, const char* configName, - const char* libName, - const cmTarget &tgt); + const char* libName, cmTarget &tgt); std::string EscapeForXML(const char* s); std::string ConvertToXMLOutputPath(const char* path); std::string ConvertToXMLOutputPathSingle(const char* path); void OutputDefineFlags(const char* flags, std::ostream& fout); - void OutputTargetRules(std::ostream& fout, - const cmTarget &target, + void OutputTargetRules(std::ostream& fout, cmTarget &target, const char *libName); void OutputBuildTool(std::ostream& fout, const char* configName, - const char* libname, const cmTarget& t); + const char* libname, cmTarget& t); void OutputLibraries(std::ostream& fout, const char* configName, const char* libName, - const cmTarget &target); + cmTarget &target); void OutputLibraryDirectories(std::ostream& fout, const char* configName, - const char* libName, - const cmTarget &target); - void OutputModuleDefinitionFile(std::ostream& fout, - const cmTarget &target); + const char* libName, cmTarget &target); + void OutputModuleDefinitionFile(std::ostream& fout, cmTarget &target); void WriteProjectStart(std::ostream& fout, const char *libName, - const cmTarget &tgt, std::vector<cmSourceGroup> &sgs); + cmTarget &tgt, std::vector<cmSourceGroup> &sgs); void WriteVCProjBeginGroup(std::ostream& fout, const char* group, const char* filter); |