diff options
Diffstat (limited to 'Source/cmWin32DefinesRule.cxx')
-rw-r--r-- | Source/cmWin32DefinesRule.cxx | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Source/cmWin32DefinesRule.cxx b/Source/cmWin32DefinesRule.cxx new file mode 100644 index 0000000..8927ff6 --- /dev/null +++ b/Source/cmWin32DefinesRule.cxx @@ -0,0 +1,28 @@ +#include "cmWin32DefinesRule.h" + + + +cmWin32DefinesRule::cmWin32DefinesRule() +{ +#ifndef _WIN32 + this->SetEnableOff(); +#endif +} + + +// cmWin32DefinesRule +bool cmWin32DefinesRule::Invoke(std::vector<std::string>& args) +{ + if(args.size() < 1 ) + { + this->SetError("called with incorrect number of arguments"); + return false; + } + for(std::vector<std::string>::iterator i = args.begin(); + i != args.end(); ++i) + { + m_Makefile->AddDefineFlag((*i).c_str()); + } + return true; +} + |