CMake/Source/cmDumpDocumentation.cxx

13 lines
209 B
C++
Raw Normal View History

2001-01-18 19:20:24 +03:00
// Program extracts documentation describing commands from
// the CMake system.
//
#include "cmMakefile.h"
int main()
{
cmMakefile makefile;
makefile.DumpDocumentationToFile("cmake.txt");
return 0;
}