mirror of
https://github.com/Kitware/CMake.git
synced 2025-06-15 16:39:26 +08:00
13 lines
206 B
C++
13 lines
206 B
C++
// Program extracts documentation describing rules from
|
|
// the CMake system.
|
|
//
|
|
#include "cmMakefile.h"
|
|
|
|
int main()
|
|
{
|
|
cmMakefile makefile;
|
|
makefile.DumpDocumentationToFile("cmake.txt");
|
|
|
|
return 0;
|
|
}
|