Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | WriteBasicConfigVersion supports version strings such as 21.07.04 | Robert Maynard | 2021-05-27 | 1 | -0/+3 |
| | | | | Fixes #22207 | ||||
* | CMakePackageConfigHelpers: Relax restrictions on version range | Marc Chevrier | 2020-12-14 | 1 | -12/+21 |
| | |||||
* | CMakePackageConfigHelpers: Add version range support | Marc Chevrier | 2020-09-23 | 1 | -0/+7 |
| | |||||
* | Modules: Consistently use 2 space indentation | Kitware Robot | 2019-05-14 | 1 | -1/+1 |
| | |||||
* | CMakePackageConfigHelpers: Add ARCH_INDEPENDENT option | Justin Bassett | 2018-12-01 | 1 | -0/+5 |
| | | | | | | | Allow skipping the architecture check in the package version file generated from calling write_basic_package_version_file. Document said architecture check. Fixes: #16184 | ||||
* | Revert the use of string(APPEND) in .cmake.in files | Daniel Pfeifer | 2016-08-08 | 1 | -1/+1 |
| | | | | | The generated files may be consumed by older cmake versions which do not support string(APPEND). | ||||
* | Use string(APPEND) in Modules | Daniel Pfeifer | 2016-07-27 | 1 | -1/+1 |
| | | | | | | | Automate with: find Modules -type f -print0 | xargs -0 perl -i -0pe \ 's/set\(([a-zA-Z0-9_]+)(\s+)"\$\{\1\}([^"])/string(APPEND \1\2"\3/g' | ||||
* | write_basic_package_version_file: remove variable dereferences in templates | Rolf Eike Beer | 2015-09-04 | 1 | -5/+5 |
| | | | | Fixes some minor whitespace issues in the if()s. | ||||
* | BasicConfigVersion: Make docs refer to the macro, not the module name | Stephen Kelly | 2012-10-23 | 1 | -1/+1 |
| | | | | | The -ExactVersion variant already refers to the macro, and I think it makes more sense anyway. | ||||
* | write_basic_package_version_file() now works with unset CMAKE_SIZEOF_VOID_P | Alex Neundorf | 2012-05-23 | 1 | -0/+5 |
| | | | | | | | | This fixes #13241. If CMAKE_SIZEOF_VOID_P is not set, either in the installed or in the using project, don't check for it. Alex | ||||
* | Improve documentation for WriteBasicConfigVersionFile.cmake | Alex Neundorf | 2011-08-05 | 1 | -2/+1 |
| | | | | Alex | ||||
* | Set UNSUITABLE instead of not COMPATIBLE | Alex Neundorf | 2011-08-05 | 1 | -24/+21 |
| | | | | Alex | ||||
* | Add some tests for write_basic_config_version_file() | Alex Neundorf | 2011-08-01 | 1 | -0/+2 |
| | | | | Alex | ||||
* | Provide macro write_basic_config_version_file() | Alex Neundorf | 2011-08-01 | 1 | -0/+43 |
This macro can be used to generate basic version files which can be installed along a Config.cmake file to provide versioning support. This (3rd try) is implemented using a macro, which maps the COMPATIBILITY mode to a filename and configure_file()s the resulting file. Alex |