readme.txt 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. For more information about how to contribute modules to CMake, see this page:
  2. http://www.itk.org/Wiki/CMake:Module_Maintainers
  3. Note to authors of FindXXX.cmake files
  4. We would like all FindXXX.cmake files to produce consistent variable names.
  5. Please use the following consistent variable names for general use.
  6. 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.
  7. XXX_LIBRARIES The libraries to link against to use XXX. These should include full paths. This should not be a cache entry.
  8. 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>
  9. XXX_EXECUTABLE Where to find the XXX tool.
  10. XXX_YYY_EXECUTABLE Where to find the YYY tool that comes with XXX.
  11. 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.
  12. XXX_ROOT_DIR Where to find the base directory of XXX.
  13. XXX_VERSION_YY Expect Version YY if true. Make sure at most one of these is ever true.
  14. XXX_WRAP_YY If False, do not try to use the relevent CMake wrapping command.
  15. XXX_YY_FOUND If False, optional YY part of XXX sytem is not available.
  16. XXX_FOUND Set to false, or undefined, if we haven't found, or don't want to use XXX.
  17. XXX_RUNTIME_LIBRARY_DIRS Optionally, the runtime library search path for use when running an executable linked to shared libraries.
  18. The list should be used by user code to create the PATH on windows or LD_LIBRARY_PATH on unix.
  19. This should not be a cache entry.
  20. XXX_VERSION_STRING A human-readable string containing the version of the package found, if any.
  21. XXX_VERSION_MAJOR The major version of the package found, if any.
  22. XXX_VERSION_MINOR The minor version of the package found, if any.
  23. XXX_VERSION_PATCH The patch version of the package found, if any.
  24. 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)
  25. 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.
  26. XXX_LIBRARY Name of XXX Library. A User may set this and XXX_INCLUDE_DIR to ignore to force non-use of XXX.
  27. XXX_YY_LIBRARY Name of YY library that is part of the XXX system. It may or may not be required to use XXX.
  28. XXX_INCLUDE_DIR Where to find xxx.h, etc. (XXX_INCLUDE_PATH was considered bad because a path includes an actual filename.)
  29. XXX_YY_INCLUDE_DIR Where to find xxx_yy.h, etc.
  30. 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.
  31. 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.
  32. 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.
  33. 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:
  34. 1. The brief description of the module, this is done by:
  35. # - a small description
  36. 2. A paragraph of text. This is done with all text that has a single
  37. space between the # and the text. To create a new paragraph, just
  38. put a # with no text on the line.
  39. 3. A verbatim line. This is done with two spaces between the # and the text.
  40. For example:
  41. # - This is a cool module
  42. # This module does really cool stuff.
  43. # It can do even more than you think.
  44. #
  45. # It even needs to paragraphs to tell you about it.
  46. # And it defines the following variables:
  47. # VAR_COOL - this is great isn't it?
  48. # VAR_REALLY_COOL - cool right?
  49. #
  50. To have a .cmake file in this directory NOT show up in the
  51. modules documentation, you should start the file with a blank
  52. line.
  53. A FindXXX.cmake module will typically be loaded by the command
  54. FIND_PACKAGE(XXX [major[.minor[.patch[.tweak]]]] [EXACT]
  55. [QUIET] [[REQUIRED|COMPONENTS] [components...]])
  56. If any version numbers are given to the command it will set the
  57. following variables before loading the module:
  58. XXX_FIND_VERSION = full requested version string
  59. XXX_FIND_VERSION_MAJOR = major version if requested, else 0
  60. XXX_FIND_VERSION_MINOR = minor version if requested, else 0
  61. XXX_FIND_VERSION_PATCH = patch version if requested, else 0
  62. XXX_FIND_VERSION_TWEAK = tweak version if requested, else 0
  63. XXX_FIND_VERSION_COUNT = number of version components, 0 to 4
  64. XXX_FIND_VERSION_EXACT = true if EXACT option was given
  65. If the find module supports versioning it should locate a version of
  66. the package that is compatible with the version requested. If a
  67. compatible version of the package cannot be found the module should
  68. not report success. The version of the package found should be stored
  69. in "XXX_VERSION..." version variables documented by the module.
  70. If the QUIET option is given to the command it will set the variable
  71. XXX_FIND_QUIETLY to true before loading the FindXXX.cmake module. If
  72. this variable is set the module should not complain about not being
  73. able to find the package. If the
  74. REQUIRED option is given to the command it will set the variable
  75. XXX_FIND_REQUIRED to true before loading the FindXXX.cmake module. If
  76. this variable is set the module should issue a FATAL_ERROR if the
  77. package cannot be found. For each package-specific component, say
  78. YYY, listed after the REQUIRED option a variable XXX_FIND_REQUIRED_YYY
  79. to true. The set of components listed after either the REQUIRED
  80. option or the COMPONENTS option will be specified in a
  81. XXX_FIND_COMPONENTS variable. This can be used by the FindXXX.cmake
  82. module to determine which sub-components of the package must be found.
  83. If neither the QUIET nor REQUIRED options are given then the
  84. FindXXX.cmake module should look for the package and complain without
  85. error if the module is not found.
  86. To get this behaviour you can use the FIND_PACKAGE_HANDLE_STANDARD_ARGS()
  87. macro, as an example see FindJPEG.cmake.
  88. For internal implementation, it's a generally accepted convention that variables starting with
  89. underscore are for temporary use only. (variable starting with an underscore
  90. are not intended as a reserved prefix).