CMake/Source/cmDumpDocumentation.cxx
2001-01-18 11:20:24 -05:00

13 lines
209 B
C++

// Program extracts documentation describing commands from
// the CMake system.
//
#include "cmMakefile.h"
int main()
{
cmMakefile makefile;
makefile.DumpDocumentationToFile("cmake.txt");
return 0;
}