WriteBasicConfigVersionFile.cmake 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. #.rst:
  2. # WriteBasicConfigVersionFile
  3. # ---------------------------
  4. #
  5. #
  6. #
  7. # ::
  8. #
  9. # WRITE_BASIC_CONFIG_VERSION_FILE( filename
  10. # [VERSION major.minor.patch]
  11. # COMPATIBILITY (AnyNewerVersion|SameMajorVersion)
  12. # )
  13. #
  14. #
  15. #
  16. # Deprecated, see WRITE_BASIC_PACKAGE_VERSION_FILE(), it is identical.
  17. #=============================================================================
  18. # Copyright 2008-2011 Alexander Neundorf, <neundorf@kde.org>
  19. # Copyright 2004-2009 Kitware, Inc.
  20. #
  21. # Distributed under the OSI-approved BSD License (the "License");
  22. # see accompanying file Copyright.txt for details.
  23. #
  24. # This software is distributed WITHOUT ANY WARRANTY; without even the
  25. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  26. # See the License for more information.
  27. #=============================================================================
  28. # (To distribute this file outside of CMake, substitute the full
  29. # License text for the above reference.)
  30. include(CMakeParseArguments)
  31. function(WRITE_BASIC_CONFIG_VERSION_FILE _filename)
  32. set(options )
  33. set(oneValueArgs VERSION COMPATIBILITY )
  34. set(multiValueArgs )
  35. cmake_parse_arguments(CVF "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
  36. if(CVF_UNPARSED_ARGUMENTS)
  37. message(FATAL_ERROR "Unknown keywords given to WRITE_BASIC_CONFIG_VERSION_FILE(): \"${CVF_UNPARSED_ARGUMENTS}\"")
  38. endif()
  39. set(versionTemplateFile "${CMAKE_ROOT}/Modules/BasicConfigVersion-${CVF_COMPATIBILITY}.cmake.in")
  40. if(NOT EXISTS "${versionTemplateFile}")
  41. message(FATAL_ERROR "Bad COMPATIBILITY value used for WRITE_BASIC_CONFIG_VERSION_FILE(): \"${CVF_COMPATIBILITY}\"")
  42. endif()
  43. if("${CVF_VERSION}" STREQUAL "")
  44. if ("${PROJECT_VERSION}" STREQUAL "")
  45. message(FATAL_ERROR "No VERSION specified for WRITE_BASIC_CONFIG_VERSION_FILE()")
  46. else()
  47. set(CVF_VERSION "${PROJECT_VERSION}")
  48. endif()
  49. endif()
  50. configure_file("${versionTemplateFile}" "${_filename}" @ONLY)
  51. endfunction()