summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-06-22 13:06:46 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-06-22 13:06:46 (GMT)
commit369308ca767367e5dd68fd783c830fd8a57ec751 (patch)
treedf00ee1c003cb33dd70fb622dfd85fd6d2a058cb /Source/cmMakefile.h
parent5fab6eebd651351ec3e712923cfa2d4b36788d74 (diff)
downloadCMake-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/cmMakefile.h')
-rw-r--r--Source/cmMakefile.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index 73c63aa..1eaa42d 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -131,7 +131,7 @@ public:
/**
* Print the object state to std::cout.
*/
- void Print() const;
+ void Print();
/** Add a custom command to the build. */
void AddCustomCommandToTarget(const char* target,
@@ -417,7 +417,6 @@ public:
* Get the list of targets
*/
cmTargets &GetTargets() { return m_Targets; }
- const cmTargets &GetTargets() const { return m_Targets; }
cmTarget* FindTarget(const char* name);