CMake/Source/cmakemain.cxx

32 lines
568 B
C++
Raw Normal View History

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