expat-config.cmake.in 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # __ __ _
  2. # ___\ \/ /_ __ __ _| |_
  3. # / _ \\ /| '_ \ / _` | __|
  4. # | __// \| |_) | (_| | |_
  5. # \___/_/\_\ .__/ \__,_|\__|
  6. # |_| XML parser
  7. #
  8. # Copyright (c) 2019 Expat development team
  9. # Licensed under the MIT license:
  10. #
  11. # Permission is hereby granted, free of charge, to any person obtaining
  12. # a copy of this software and associated documentation files (the
  13. # "Software"), to deal in the Software without restriction, including
  14. # without limitation the rights to use, copy, modify, merge, publish,
  15. # distribute, sublicense, and/or sell copies of the Software, and to permit
  16. # persons to whom the Software is furnished to do so, subject to the
  17. # following conditions:
  18. #
  19. # The above copyright notice and this permission notice shall be included
  20. # in all copies or substantial portions of the Software.
  21. #
  22. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  23. # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  24. # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
  25. # NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
  26. # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  27. # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
  28. # USE OR OTHER DEALINGS IN THE SOFTWARE.
  29. #
  30. if(NOT _expat_config_included)
  31. # Protect against multiple inclusion
  32. set(_expat_config_included TRUE)
  33. include("${CMAKE_CURRENT_LIST_DIR}/expat.cmake")
  34. @PACKAGE_INIT@
  35. #
  36. # Supported components
  37. #
  38. macro(expat_register_component _NAME _AVAILABE)
  39. set(expat_${_NAME}_FOUND ${_AVAILABE})
  40. endmacro()
  41. expat_register_component(attr_info @EXPAT_ATTR_INFO@)
  42. expat_register_component(dtd @EXPAT_DTD@)
  43. expat_register_component(large_size @EXPAT_LARGE_SIZE@)
  44. expat_register_component(min_size @EXPAT_MIN_SIZE@)
  45. expat_register_component(ns @EXPAT_NS@)
  46. if(@EXPAT_CONTEXT_BYTES@)
  47. expat_register_component(context_bytes ON)
  48. else()
  49. expat_register_component(context_bytes OFF)
  50. endif()
  51. if("@EXPAT_CHAR_TYPE@" STREQUAL "char")
  52. expat_register_component(char ON)
  53. expat_register_component(ushort OFF)
  54. expat_register_component(wchar_t OFF)
  55. elseif("@EXPAT_CHAR_TYPE@" STREQUAL "ushort")
  56. expat_register_component(char OFF)
  57. expat_register_component(ushort ON)
  58. expat_register_component(wchar_t OFF)
  59. elseif("@EXPAT_CHAR_TYPE@" STREQUAL "wchar_t")
  60. expat_register_component(char OFF)
  61. expat_register_component(ushort OFF)
  62. expat_register_component(wchar_t ON)
  63. endif()
  64. check_required_components(expat)
  65. endif(NOT _expat_config_included)