diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-10-28 16:06:06 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-10-28 16:06:06 (GMT) |
commit | 3e2c1f347701155f2713ab144f3c7b3cf00d8aca (patch) | |
tree | 8d8b7b5a6cb31a3f0b3255c37769e274ea0e9a4f /Source/cmLocalUnixMakefileGenerator.h | |
parent | 032883cc348fad280ada33bcaa4598e0fcea7dd3 (diff) | |
download | CMake-3e2c1f347701155f2713ab144f3c7b3cf00d8aca.zip CMake-3e2c1f347701155f2713ab144f3c7b3cf00d8aca.tar.gz CMake-3e2c1f347701155f2713ab144f3c7b3cf00d8aca.tar.bz2 |
BUG: fix for bug 303 pass makeflags to sub makes
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.h b/Source/cmLocalUnixMakefileGenerator.h index 6e16a2c..2bbb9d3 100644 --- a/Source/cmLocalUnixMakefileGenerator.h +++ b/Source/cmLocalUnixMakefileGenerator.h @@ -80,6 +80,12 @@ public: ///! If ignore lib prefix is true, then do not strip lib from the name of a library. void SetIgnoreLibPrefix(bool s) { m_IgnoreLibPrefix = s; } + /** + * If true, then explicitly pass MAKEFLAGS on the make all target for makes + * that do not use environment variables. + * + */ + void SetPassMakeflags(bool s){m_PassMakeflags = s;} protected: void AddDependenciesToSourceFile(cmDependInformation const*info, @@ -227,6 +233,7 @@ protected: std::string m_ExecutableOutputPath; std::string m_LibraryOutputPath; bool m_WindowsShell; + bool m_PassMakeflags; private: }; |