summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.h
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2007-02-23 14:46:27 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2007-02-23 14:46:27 (GMT)
commit8ad343093179035fa8ad9136e8e8f72fc3804dd2 (patch)
tree35c34abc3af73da857cffea26f0c4eeb2872369b /Source/cmLocalGenerator.h
parent440bbf08711e9a784f90f1d2541e5d204807161a (diff)
downloadCMake-8ad343093179035fa8ad9136e8e8f72fc3804dd2.zip
CMake-8ad343093179035fa8ad9136e8e8f72fc3804dd2.tar.gz
CMake-8ad343093179035fa8ad9136e8e8f72fc3804dd2.tar.bz2
ENH: Make EXCLUDE_FROM_ALL a target and directory properties. Also, make IsInAll use EXCLUDE_FROM_ALL. Also, enable the test that tests this
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r--Source/cmLocalGenerator.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h
index e9c58d4..1b8f124 100644
--- a/Source/cmLocalGenerator.h
+++ b/Source/cmLocalGenerator.h
@@ -114,14 +114,8 @@ public:
std::string ConvertToOptionallyRelativeOutputPath(const char* remote);
// flag to determine if this project should be included in a parent project
- bool GetExcludeAll()
- {
- return this->ExcludeFromAll;
- }
- void SetExcludeAll(bool b)
- {
- this->ExcludeFromAll = b;
- }
+ bool GetExcludeAll();
+ void SetExcludeAll(bool b);
///! set/get the parent generator
cmLocalGenerator* GetParent(){return this->Parent;}
@@ -281,7 +275,6 @@ protected:
std::vector<std::string> StartDirectoryComponents;
std::vector<std::string> HomeOutputDirectoryComponents;
std::vector<std::string> StartOutputDirectoryComponents;
- bool ExcludeFromAll;
cmLocalGenerator* Parent;
std::vector<cmLocalGenerator*> Children;
std::map<cmStdString, cmStdString> LanguageToIncludeFlags;