Macros.cmake 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  9. #
  10. # This software is licensed as described in the file COPYING, which
  11. # you should have received as part of this distribution. The terms
  12. # are also available at https://curl.se/docs/copyright.html.
  13. #
  14. # You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. # copies of the Software, and permit persons to whom the Software is
  16. # furnished to do so, under the terms of the COPYING file.
  17. #
  18. # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. # KIND, either express or implied.
  20. #
  21. # SPDX-License-Identifier: curl
  22. #
  23. ###########################################################################
  24. # File defines convenience macros for available feature testing
  25. # Check if header file exists and add it to the list.
  26. # This macro is intended to be called multiple times with a sequence of
  27. # possibly dependent header files. Some headers depend on others to be
  28. # compiled correctly.
  29. macro(check_include_file_concat _file _variable)
  30. check_include_files("${CURL_INCLUDES};${_file}" ${_variable})
  31. if(${_variable})
  32. set(CURL_INCLUDES ${CURL_INCLUDES} ${_file})
  33. set(CURL_TEST_DEFINES "${CURL_TEST_DEFINES} -D${_variable}")
  34. endif()
  35. endmacro()
  36. # For other curl specific tests, use this macro.
  37. # Return result in variable: CURL_TEST_OUTPUT
  38. macro(curl_internal_test _curl_test)
  39. if(NOT DEFINED "${_curl_test}")
  40. set(_macro_check_function_definitions
  41. "-D${_curl_test} ${CURL_TEST_DEFINES} ${CMAKE_REQUIRED_FLAGS}")
  42. if(CMAKE_REQUIRED_LIBRARIES)
  43. set(_curl_test_add_libraries
  44. "-DLINK_LIBRARIES:STRING=${CMAKE_REQUIRED_LIBRARIES}")
  45. endif()
  46. message(STATUS "Performing Test ${_curl_test}")
  47. try_compile(${_curl_test}
  48. ${CMAKE_BINARY_DIR}
  49. "${CMAKE_CURRENT_SOURCE_DIR}/CMake/CurlTests.c"
  50. CMAKE_FLAGS
  51. "-DCOMPILE_DEFINITIONS:STRING=${_macro_check_function_definitions}"
  52. "${_curl_test_add_libraries}"
  53. OUTPUT_VARIABLE CURL_TEST_OUTPUT)
  54. if(${_curl_test})
  55. set(${_curl_test} 1 CACHE INTERNAL "Curl test")
  56. message(STATUS "Performing Test ${_curl_test} - Success")
  57. else()
  58. set(${_curl_test} "" CACHE INTERNAL "Curl test")
  59. message(STATUS "Performing Test ${_curl_test} - Failed")
  60. endif()
  61. endif()
  62. endmacro()
  63. macro(optional_dependency _dependency)
  64. set(CURL_${_dependency} "AUTO" CACHE STRING "Build curl with ${_dependency} support (AUTO, ON or OFF)")
  65. set_property(CACHE CURL_${_dependency} PROPERTY STRINGS "AUTO" "ON" "OFF")
  66. if(CURL_${_dependency} STREQUAL "AUTO")
  67. find_package(${_dependency})
  68. elseif(CURL_${_dependency})
  69. find_package(${_dependency} REQUIRED)
  70. endif()
  71. endmacro()