summaryrefslogtreecommitdiffstats
path: root/Source/cmDSPMakefile.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmDSPMakefile.h')
-rw-r--r--Source/cmDSPMakefile.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/Source/cmDSPMakefile.h b/Source/cmDSPMakefile.h
index 3ed0a42..08b9428 100644
--- a/Source/cmDSPMakefile.h
+++ b/Source/cmDSPMakefile.h
@@ -39,6 +39,12 @@ public:
*/
void SetBuildType(BuildType);
+ BuildType GetBuildType()
+ {
+ return m_BuildType;
+ }
+
+
/**
* Return array of created DSP names in a STL vector.
* Each executable must have its own dsp.
@@ -86,7 +92,7 @@ private:
std::string m_DebugDLLLibraryOptions;
std::string m_ReleaseDLLLibraryOptions;
cmMakefile* m_Makefile;
-
+ BuildType m_BuildType;
std::vector<std::string> m_Configurations;
};