mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 20:49:41 +00:00
13 lines
209 B
C++
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;
|
|
}
|