diff options
author | Brad King <brad.king@kitware.com> | 2011-04-01 17:46:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-04-01 17:46:36 (GMT) |
commit | ede46d9d91485c224d4b2ca36c8c864263923eec (patch) | |
tree | 5184af4def1ec0e8d72a8145e49e6c9d9dad2bcf /Modules/readme.txt | |
parent | 0315d3b66f31a6db21242a020f0a666547e470cc (diff) | |
download | CMake-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.txt | 22 |
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] |