2002-01-21 23:30:43 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: Insight Segmentation & Registration Toolkit
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
Copyright (c) 2002 Insight Consortium. All rights reserved.
|
|
|
|
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
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
|
|
|
}
|