1 /*=========================================================================
3 Program: Insight Segmentation & Registration Toolkit
4 Module: $RCSfile: cmakemain.cxx,v $
6 Date: $Date: 2002-09-06 17:04:25 $
7 Version: $Revision: 1.10 $
9 Copyright (c) 2002 Insight Consortium. All rights reserved.
10 See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
12 This software is distributed WITHOUT ANY WARRANTY; without even
13 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 PURPOSE. See the above copyright notices for more information.
16 =========================================================================*/
17 #include "cmakewizard.h"
19 #include "cmMakefileGenerator.h"
20 #include "cmCacheManager.h"
22 int main(int ac
, char** av
)
26 std::vector
<std::string
> args
;
27 for(int i
=0; i
< ac
; ++i
)
29 if(strcmp(av
[i
], "-i") == 0)
35 if (strcmp(av
[i
], "-E") == 0)
41 args
.push_back(av
[i
]);
48 int ret
= cmake::CMakeCommand(args
);
54 wizard
.RunWizard(args
);
58 int ret
= cm
.Run(args
);