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-01-18 19:20:24 +03:00
|
|
|
// Program extracts documentation describing commands from
|
2001-01-12 20:43:00 +03:00
|
|
|
// the CMake system.
|
|
|
|
//
|
2002-09-11 00:51:59 +04:00
|
|
|
#include "cmake.h"
|
2001-01-12 20:43:00 +03:00
|
|
|
|
2001-08-24 01:40:07 +04:00
|
|
|
int main(int ac, char** av)
|
2001-01-12 20:43:00 +03:00
|
|
|
{
|
2002-09-11 00:51:59 +04:00
|
|
|
cmake cmi;
|
2001-08-24 01:40:07 +04:00
|
|
|
const char* outname = "cmake.html";
|
|
|
|
if(ac > 1)
|
|
|
|
{
|
|
|
|
outname = av[1];
|
|
|
|
}
|
|
|
|
std::ofstream fout(outname);
|
|
|
|
if(!fout)
|
|
|
|
{
|
|
|
|
std::cerr << "failed to open output file: " << outname << "\n";
|
|
|
|
return -1;
|
|
|
|
}
|
2002-09-11 00:51:59 +04:00
|
|
|
cmi.DumpDocumentationToFile(fout);
|
2001-01-12 20:43:00 +03:00
|
|
|
return 0;
|
|
|
|
}
|