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