summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2003-07-11 03:14:49 (GMT)
committerBrad King <brad.king@kitware.com>2003-07-11 03:14:49 (GMT)
commitc08062795747714b6db50a4261543ff4035dc843 (patch)
treeb319855df7bdf942ca7136cc82604aa7bb401ddc
parenta04796ddcb417c9a9b015c18af4425ee237dc9e9 (diff)
downloadCMake-c08062795747714b6db50a4261543ff4035dc843.zip
CMake-c08062795747714b6db50a4261543ff4035dc843.tar.gz
CMake-c08062795747714b6db50a4261543ff4035dc843.tar.bz2
ENH: Added CMAKE_STANDARD_INTRODUCTION macro defining standard documentation for inclusion in every binary's documentation.
-rw-r--r--Source/cmake.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmake.h b/Source/cmake.h
index 35c3c3f..90b75e0 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}