summaryrefslogtreecommitdiff
path: root/Source/cmLocalVisualStudio6Generator.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-06-22 09:06:46 -0400
committerKen Martin <ken.martin@kitware.com>2005-06-22 09:06:46 -0400
commit369308ca767367e5dd68fd783c830fd8a57ec751 (patch)
treedf00ee1c003cb33dd70fb622dfd85fd6d2a058cb /Source/cmLocalVisualStudio6Generator.h
parent5fab6eebd651351ec3e712923cfa2d4b36788d74 (diff)
downloadcmake-369308ca767367e5dd68fd783c830fd8a57ec751.tar.gz
ENH: make LOCATION an computed property of the target and get rid of a bunch of const junk
Diffstat (limited to 'Source/cmLocalVisualStudio6Generator.h')
-rw-r--r--Source/cmLocalVisualStudio6Generator.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.h b/Source/cmLocalVisualStudio6Generator.h
index c96deb0cb0..bf09f5cb95 100644
--- a/Source/cmLocalVisualStudio6Generator.h
+++ b/Source/cmLocalVisualStudio6Generator.h
@@ -51,7 +51,7 @@ public:
/**
* Specify the type of the build: static, dll, or executable.
*/
- void SetBuildType(BuildType, const char* libName, const cmTarget&);
+ void SetBuildType(BuildType, const char* libName, cmTarget&);
/**
* Return array of created DSP names in a STL vector.
@@ -76,7 +76,7 @@ private:
void WriteDSPEndGroup(std::ostream& fout);
void WriteDSPHeader(std::ostream& fout, const char *libName,
- const cmTarget &tgt, std::vector<cmSourceGroup> &sgs);
+ cmTarget &tgt, std::vector<cmSourceGroup> &sgs);
void WriteDSPFooter(std::ostream& fout);
void AddDSPBuildRule();
@@ -91,7 +91,7 @@ private:
std::vector<std::string>& depends,
const cmCustomCommandLines& commandLines);
- std::string CreateTargetRules(const cmTarget &target,
+ std::string CreateTargetRules(cmTarget &target,
const char *libName);
std::string m_IncludeOptions;
std::vector<std::string> m_Configurations;