26 lines
530 B
C++
26 lines
530 B
C++
#include "cmUnixDefinesRule.h"
|
|
|
|
cmUnixDefinesRule::cmUnixDefinesRule()
|
|
{
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
|
this->SetEnableOff();
|
|
#endif
|
|
}
|
|
|
|
// cmUNIXDefinesRule
|
|
bool cmUnixDefinesRule::Invoke(std::vector<std::string>& args)
|
|
{
|
|
if(args.size() < 1 )
|
|
{
|
|
this->SetError("Win32Defines 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;
|
|
}
|
|
|