summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r--Source/cmTarget.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h
index 665c97b..6e446e0 100644
--- a/Source/cmTarget.h
+++ b/Source/cmTarget.h
@@ -57,14 +57,6 @@ public:
///! Set/Get the name of the target
const char* GetName() {return this->Name.c_str();}
- /**
- * Indicate whether the target is part of the all target
- */
- bool IsInAll() { return !this->GetPropertyAsBool("EXCLUDE_FROM_ALL"); }
- bool GetInAll() { return !this->GetPropertyAsBool("EXCLUDE_FROM_ALL"); }
- void SetInAll(bool f) {
- this->SetProperty("EXCLUDE_FROM_ALL", (f) ?"FALSE" : "TRUE"); }
-
///! Set the cmMakefile that owns this target
void SetMakefile(cmMakefile *mf);
cmMakefile *GetMakefile() { return this->Makefile;};