From c08062795747714b6db50a4261543ff4035dc843 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 10 Jul 2003 23:14:49 -0400 Subject: [PATCH] ENH: Added CMAKE_STANDARD_INTRODUCTION macro defining standard documentation for inclusion in every binary's documentation. --- Source/cmake.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Source/cmake.h b/Source/cmake.h index 35c3c3ffc..90b75e032 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -301,3 +301,11 @@ private: "A makefile generator is responsible for generating a particular build " \ "system. Possible generator names are\n" \ " \"Unix Makefiles\" - Standard UNIX Makefiles"} + +#define CMAKE_STANDARD_INTRODUCTION \ + {0, \ + "CMake is a cross-platform build system generator. Projects " \ + "specify their build process with platform-independent CMake listfiles " \ + "included in each directory of a source tree with the name CMakeLists.txt. " \ + "Users build a project by using CMake to generate a build system " \ + "for a native tool on their platform.", 0}