diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-02-28 22:50:15 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-02-28 22:50:15 (GMT) |
commit | af30fe67458fd26054696ce018f7ae6faaebcca4 (patch) | |
tree | f85d75d8c8f1f4973f200075545584f81d2f04ab /Source/cmDSPWriter.h | |
parent | d0a8794746f6de026f1c69652cd09caf8be9cfab (diff) | |
download | CMake-af30fe67458fd26054696ce018f7ae6faaebcca4.zip CMake-af30fe67458fd26054696ce018f7ae6faaebcca4.tar.gz CMake-af30fe67458fd26054696ce018f7ae6faaebcca4.tar.bz2 |
BUG: fix circular depends on libraries and remove depends for static libraries
Diffstat (limited to 'Source/cmDSPWriter.h')
-rw-r--r-- | Source/cmDSPWriter.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Source/cmDSPWriter.h b/Source/cmDSPWriter.h index 3ed0a42..08b9428 100644 --- a/Source/cmDSPWriter.h +++ b/Source/cmDSPWriter.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; }; |