CMake/Source/cmakemain.cxx

32 lines
568 B
C++
Raw Normal View History

2001-11-30 16:48:52 -05:00
#include "cmakewizard.h"
2001-05-30 15:56:17 -04:00
#include "cmake.h"
2001-09-14 16:26:56 -04:00
#include "cmMakefileGenerator.h"
2001-05-30 15:56:17 -04:00
int main(int ac, char** av)
{
2001-11-30 16:48:52 -05:00
bool wiz = false;
2001-05-30 15:56:17 -04:00
std::vector<std::string> args;
for(int i =0; i < ac; ++i)
{
2001-11-30 16:48:52 -05:00
if(strcmp(av[i], "-i") == 0)
{
wiz = true;
}
else
{
args.push_back(av[i]);
}
2001-05-30 15:56:17 -04:00
}
2001-11-30 16:48:52 -05:00
if(!wiz)
{
cmake cm;
int ret = cm.Generate(args);
cmMakefileGenerator::UnRegisterGenerators();
return ret;
}
cmakewizard wizard;
wizard.RunWizard(args);
2001-09-14 16:26:56 -04:00
cmMakefileGenerator::UnRegisterGenerators();
2001-11-30 16:48:52 -05:00
return 0;
2001-05-30 15:56:17 -04:00
}