mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-08 07:10:12 -05:00
482a235bff
6a6393cDon't use a variable name that might be used in other files.5ca8c56Fix up verbatim code sections of the dox.75596e6Don't start a line with a dash(-)826374aRemove blank line at the start of the file.8b9b8e1Add documentation about the prefix and no_deprecated options.51bc63aFix the feature of using a specific prefix for macros.3449f6bAdd quotes in case cmake is installed in a prefix with a space.36d28f2Fix Compiler id variable name.99b2aabDisable the tests for Watcom.7ac0ab1Quote paths in case there is a space in one of them.89108b9Look for errors reported by PGI too.e0cc024Add missing NO_EXPORT macro variant.1b031d1More consistency in the macro options.03d60c7Try to make the macros do almost nothing for Watcom.6adeda9Possibly fix configuration test on AIX.e253348Possibly fix test on HPUX.32eff0cTest for too-old-intel compilers.42154ecFix up the regex command for Intel.a147a06Add some settings for non-truncation of test output.bf73e75Hopefully add version extraction for Intel.aa4f0b6Fix the version extraction regex for clang.a493d1aTest the correct cxx variable.b6ee2eeComment the test assertion for nowa9a8b9eExclude win32 from hidden visibility checks.afae7a9Start testing expected values for compiler flags.1ae3365Exclude PGI from exports and deprecated.f426496Exclude cygwin from the hidden visibility feature.f84c7dbDon't enable deprecated on old GCC9672b33Don't enable deprecated on HP.10d8c44Disable testing of deprecated macros.97392a7dFixup forgotten part ofaed84517c92aeab4fBorland can't do deprecated.c41c68bTry to error on deprecated on Intel and SunCC.aed8451Test for deprecated attribute before declspec.c448b09Perform the -Werror test only once.fb88c6eAdd some messaging output to make remaining issues findable.01e9e98Test -Werror instead of enabling it per compiler.9aab2aaExpect the tests to pass if hidden visibilty is not enabled.856bdb3Don't change the expected build result based on the platform.df4615eAdd the COMPILER_HAS_DEPRECATED only if it has a declspec variant78a6e1cExclude the XL compiler from the hidden-visibility test.e1f7ee3Test for compiler features, instead of for specific platforms.9554e10Split the deprecated available check from setting macro values.1590d5fDon't export methods on already exported classes.750b67cDon't use hidden visibility on non-mingw windows either.1f3be45Make sure the hidden visibility variables never get set on MINGW.399f415Only set the deprecated attribute if hidden visibilty is enabled.1c6b41bRemember to surround the other deprecated test in the Borland check.3f7e036Export deprecated free methods too.7fa5592Add some debug output to narrow down deprecation test issues7924c1dAnother attempt at fixing Borland.50460eaFix off-by-not in test for Borland.b443459Use the correct project name compiletest not compilefailfc3772eAnother attempt to fix the tests on Borland.bab4a22Disable all export macros on Borland.cff9493Only set the COMPILER_HAS_HIDDEN_VISIBILITY if GCC >= 4.2af443b8Set the CMAKE_RUNTIME_OUTPUT_DIRECTORY for windows builds.61726f8Only run the failure tests with gcc >= 4.2002ddf2Fix typo and tests failing as a result.4443037Fix tests with clang.ffaa127Test expected no-op instead of aborting the build.6aca0e2Short-circuit the tests on unsupported compilers.d123bceAdd some debug output.3574b75Simplify the compiler feature checkc7a937bSimplify. We already know we have hidden visibility at this point.3b188c8Test for features, not specific compilers.4718233Remove the fatal_warnings option which is no longer used.b19911eAdd missing licence header.706ed2bAdd a newline at the end of the file.8963716Add a newline at the end of the file.def0a54Handle the case where the user changes the DEFINE_SYMBOL property.3088070Add the GenerateExportMacro with unit tests.
For more information about how to contribute modules to CMake, see this page:
http://www.itk.org/Wiki/CMake:Module_Maintainers
Note to authors of FindXXX.cmake files
We would like all FindXXX.cmake files to produce consistent variable names.
Please use the following consistent variable names for general use.
XXX_INCLUDE_DIRS The final set of include directories listed in one variable for use by client code. This should not be a cache entry.
XXX_LIBRARIES The libraries to link against to use XXX. These should include full paths. This should not be a cache entry.
XXX_DEFINITIONS Definitions to use when compiling code that uses XXX. This really shouldn't include options such as (-DHAS_JPEG)that a client source-code file uses to decide whether to #include <jpeg.h>
XXX_EXECUTABLE Where to find the XXX tool.
XXX_YYY_EXECUTABLE Where to find the YYY tool that comes with XXX.
XXX_LIBRARY_DIRS Optionally, the final set of library directories listed in one variable for use by client code. This should not be a cache entry.
XXX_ROOT_DIR Where to find the base directory of XXX.
XXX_VERSION_YY Expect Version YY if true. Make sure at most one of these is ever true.
XXX_WRAP_YY If False, do not try to use the relevent CMake wrapping command.
XXX_YY_FOUND If False, optional YY part of XXX sytem is not available.
XXX_FOUND Set to false, or undefined, if we haven't found, or don't want to use XXX.
XXX_RUNTIME_LIBRARY_DIRS Optionally, the runtime library search path for use when running an executable linked to shared libraries.
The list should be used by user code to create the PATH on windows or LD_LIBRARY_PATH on unix.
This should not be a cache entry.
XXX_VERSION_STRING A human-readable string containing the version of the package found, if any.
XXX_VERSION_MAJOR The major version of the package found, if any.
XXX_VERSION_MINOR The minor version of the package found, if any.
XXX_VERSION_PATCH The patch version of the package found, if any.
You do not have to provide all of the above variables. You should provide XXX_FOUND under most circumstances. If XXX is a library, then XXX_LIBRARIES, should also be defined, and XXX_INCLUDE_DIRS should usually be defined (I guess libm.a might be an exception)
The following names should not usually be used in CMakeLists.txt files, but they may be usefully modified in users' CMake Caches to control stuff.
XXX_LIBRARY Name of XXX Library. A User may set this and XXX_INCLUDE_DIR to ignore to force non-use of XXX.
XXX_YY_LIBRARY Name of YY library that is part of the XXX system. It may or may not be required to use XXX.
XXX_INCLUDE_DIR Where to find xxx.h, etc. (XXX_INCLUDE_PATH was considered bad because a path includes an actual filename.)
XXX_YY_INCLUDE_DIR Where to find xxx_yy.h, etc.
For tidiness's sake, try to keep as many options as possible out of the cache, leaving at least one option which can be used to disable use of the module, or locate a not-found library (e.g. XXX_ROOT_DIR). For the same reason, mark most cache options as advanced.
If you need other commands to do special things then it should still begin with XXX_. This gives a sort of namespace effect and keeps things tidy for the user. You should put comments describing all the exported settings, plus descriptions of any the users can use to control stuff.
You really should also provide backwards compatibility any old settings that were actually in use. Make sure you comment them as deprecated, so that no-one starts using them.
To correctly document a module, create a comment block at the top with # comments. There are three types of comments that can be in the block:
1. The brief description of the module, this is done by:
# - a small description
2. A paragraph of text. This is done with all text that has a single
space between the # and the text. To create a new paragraph, just
put a # with no text on the line.
3. A verbatim line. This is done with two spaces between the # and the text.
For example:
# - This is a cool module
# This module does really cool stuff.
# It can do even more than you think.
#
# It even needs to paragraphs to tell you about it.
# And it defines the following variables:
# VAR_COOL - this is great isn't it?
# 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]
[QUIET] [[REQUIRED|COMPONENTS] [components...]])
If any version numbers are given to the command it will set the
following variables before loading the module:
XXX_FIND_VERSION = full requested version string
XXX_FIND_VERSION_MAJOR = major version if requested, else 0
XXX_FIND_VERSION_MINOR = minor version if requested, else 0
XXX_FIND_VERSION_PATCH = patch version if requested, else 0
XXX_FIND_VERSION_TWEAK = tweak version if requested, else 0
XXX_FIND_VERSION_COUNT = number of version components, 0 to 4
XXX_FIND_VERSION_EXACT = true if EXACT option was given
If the find module supports versioning it should locate a version of
the package that is compatible with the version requested. If a
compatible version of the package cannot be found the module should
not report success. The version of the package found should be stored
in "XXX_VERSION..." version variables documented by the module.
If the QUIET option is given to the command it will set the variable
XXX_FIND_QUIETLY to true before loading the FindXXX.cmake module. If
this variable is set the module should not complain about not being
able to find the package. If the
REQUIRED option is given to the command it will set the variable
XXX_FIND_REQUIRED to true before loading the FindXXX.cmake module. If
this variable is set the module should issue a FATAL_ERROR if the
package cannot be found. For each package-specific component, say
YYY, listed after the REQUIRED option a variable XXX_FIND_REQUIRED_YYY
to true. The set of components listed after either the REQUIRED
option or the COMPONENTS option will be specified in a
XXX_FIND_COMPONENTS variable. This can be used by the FindXXX.cmake
module to determine which sub-components of the package must be found.
If neither the QUIET nor REQUIRED options are given then the
FindXXX.cmake module should look for the package and complain without
error if the module is not found.
To get this behaviour you can use the FIND_PACKAGE_HANDLE_STANDARD_ARGS()
macro, as an example see FindJPEG.cmake.
For internal implementation, it's a generally accepted convention that variables starting with
underscore are for temporary use only. (variable starting with an underscore
are not intended as a reserved prefix).