summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefileGenerator.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-08-21 16:01:55 (GMT)
committerKen Martin <ken.martin@kitware.com>2002-08-21 16:01:55 (GMT)
commit6158aa7fd66e15b529d66b535b65356d6394b79f (patch)
tree082535a92f380153cf8d9cd22348df3b39cdd90a /Source/cmMakefileGenerator.h
parentc0b293f21badb3b85b41dc7c88a6a2c337d3d8af (diff)
downloadCMake-6158aa7fd66e15b529d66b535b65356d6394b79f.zip
CMake-6158aa7fd66e15b529d66b535b65356d6394b79f.tar.gz
CMake-6158aa7fd66e15b529d66b535b65356d6394b79f.tar.bz2
dll support
Diffstat (limited to 'Source/cmMakefileGenerator.h')
-rw-r--r--Source/cmMakefileGenerator.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmMakefileGenerator.h b/Source/cmMakefileGenerator.h
index 4ef8078..d3193c8 100644
--- a/Source/cmMakefileGenerator.h
+++ b/Source/cmMakefileGenerator.h
@@ -36,9 +36,9 @@ public:
///! Register a generator
static void RegisterGenerator(cmMakefileGenerator*);
///! delete all registered generators, useful for clean up
- static void UnRegisterGenerators();
+ CM_EXPORT static void UnRegisterGenerators();
///! Get the names of the current registered generators
- static void GetRegisteredGenerators(std::vector<std::string>& names);
+ CM_EXPORT static void GetRegisteredGenerators(std::vector<std::string>& names);
///! Get the name for the generator.
virtual const char* GetName() = 0;
@@ -80,9 +80,10 @@ public:
static bool GetLanguageEnabled(const char*);
static void ClearEnabledLanguages();
protected:
+ cmMakefile* m_Makefile;
+private:
static std::map<cmStdString, cmMakefileGenerator*> s_RegisteredGenerators;
static std::map<cmStdString, bool> s_LanguageEnabled;
- cmMakefile* m_Makefile;
};
#endif