cmDumpDocumentation.cxx 209 B

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