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.
|
|
|
|
//
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
cmMakefile makefile;
|
|
|
|
makefile.DumpDocumentationToFile("cmake.txt");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|