summaryrefslogtreecommitdiffstats
path: root/Modules/readme.txt
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2011-04-01 17:46:36 (GMT)
committerBrad King <brad.king@kitware.com>2011-04-01 17:46:36 (GMT)
commitede46d9d91485c224d4b2ca36c8c864263923eec (patch)
tree5184af4def1ec0e8d72a8145e49e6c9d9dad2bcf /Modules/readme.txt
parent0315d3b66f31a6db21242a020f0a666547e470cc (diff)
downloadCMake-ede46d9d91485c224d4b2ca36c8c864263923eec.zip
CMake-ede46d9d91485c224d4b2ca36c8c864263923eec.tar.gz
CMake-ede46d9d91485c224d4b2ca36c8c864263923eec.tar.bz2
Modules: Add comment and copyright notice validation to readme.txt
Document for module authors how to format the copyright notice and test it. Also provide a hint for previewing the module documentation formatting.
Diffstat (limited to 'Modules/readme.txt')
-rw-r--r--Modules/readme.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/Modules/readme.txt b/Modules/readme.txt
index dd52000..e2d7f06 100644
--- a/Modules/readme.txt
+++ b/Modules/readme.txt
@@ -64,10 +64,32 @@ For example:
# VAR_REALLY_COOL - cool right?
#
+Test the documentation formatting by running "cmake --help-module FindXXX".
+Edit the comments until the output of this command looks satisfactory.
+
To have a .cmake file in this directory NOT show up in the
modules documentation, you should start the file with a blank
line.
+After the documentation, leave a *BLANK* line, and then add a
+copyright and licence notice block like this one:
+
+#=============================================================================
+# Copyright 2009-2011 Your Name
+#
+# Distributed under the OSI-approved BSD License (the "License");
+# see accompanying file Copyright.txt for details.
+#
+# This software is distributed WITHOUT ANY WARRANTY; without even the
+# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the License for more information.
+#=============================================================================
+# (To distribute this file outside of CMake, substitute the full
+# License text for the above reference.)
+
+The layout of the notice block is strictly enforced by the ModuleNotices test.
+Only the year range and name may be changed freely.
+
A FindXXX.cmake module will typically be loaded by the command
FIND_PACKAGE(XXX [major[.minor[.patch[.tweak]]]] [EXACT]