blob: 51db267adbd27ea0c95427aadada1d6c268d90ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Program extracts documentation describing commands from
// the CMake system.
//
#include "cmMakefile.h"
int main()
{
cmMakefile makefile;
makefile.DumpDocumentationToFile("cmake.txt");
return 0;
}
|