1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
enable_language(C)
enable_language(CXX)
include(CheckIncludeFile)
include(CheckIncludeFileCXX)
include(CheckIncludeFiles)
set(CMAKE_REQUIRED_LIBRARIES does_not_exist)
#============================================================================
check_include_file("stddef.h" HAVE_STDDEF_H_1)
if(NOT HAVE_STDDEF_H_1)
message(SEND_ERROR "HAVE_STDDEF_H_1 failed but should have passed.")
endif()
if(NOT _CIF_CMP0075_WARNED)
message(SEND_ERROR "HAVE_STDDEF_H_1 did not warn but should have")
endif()
check_include_file("stddef.h" HAVE_STDDEF_H_2) # second does not warn
if(NOT HAVE_STDDEF_H_2)
message(SEND_ERROR "HAVE_STDDEF_H_2 failed but should have passed.")
endif()
unset(_CIF_CMP0075_WARNED)
#----------------------------------------------------------------------------
check_include_file_cxx("stddef.h" HAVE_STDDEF_H_CXX_1)
if(NOT HAVE_STDDEF_H_CXX_1)
message(SEND_ERROR "HAVE_STDDEF_H_CXX_1 failed but should have passed.")
endif()
if(NOT _CIF_CMP0075_WARNED)
message(SEND_ERROR "HAVE_STDDEF_H_CXX_1 did not warn but should have")
endif()
check_include_file_cxx("stddef.h" HAVE_STDDEF_H_CXX_2) # second does not warn
if(NOT HAVE_STDDEF_H_CXX_2)
message(SEND_ERROR "HAVE_STDDEF_H_CXX_2 failed but should have passed.")
endif()
unset(_CIF_CMP0075_WARNED)
#----------------------------------------------------------------------------
check_include_files("stddef.h;stdlib.h" HAVE_STDLIB_H_1)
if(NOT HAVE_STDLIB_H_1)
message(SEND_ERROR "HAVE_STDLIB_H_1 failed but should have passed.")
endif()
if(NOT _CIF_CMP0075_WARNED)
message(SEND_ERROR "HAVE_STDLIB_H_1 did not warn but should have")
endif()
check_include_files("stddef.h;stdlib.h" HAVE_STDLIB_H_2) # second does not warn
if(NOT HAVE_STDLIB_H_2)
message(SEND_ERROR "HAVE_STDLIB_H_2 failed but should have passed.")
endif()
unset(_CIF_CMP0075_WARNED)
#============================================================================
cmake_policy(SET CMP0075 OLD)
# These should not warn.
# These should pass the checks due to ignoring 'does_not_exist'.
check_include_file("stddef.h" HAVE_STDDEF_H_3)
if(NOT HAVE_STDDEF_H_3)
message(SEND_ERROR "HAVE_STDDEF_H_3 failed but should have passed.")
endif()
if(_CIF_CMP0075_WARNED)
message(SEND_ERROR "HAVE_STDDEF_H_3 warned but should not have")
endif()
unset(_CIF_CMP0075_WARNED)
#----------------------------------------------------------------------------
check_include_file_cxx("stddef.h" HAVE_STDDEF_H_CXX_3)
if(NOT HAVE_STDDEF_H_CXX_3)
message(SEND_ERROR "HAVE_STDDEF_H_CXX_3 failed but should have passed.")
endif()
if(_CIF_CMP0075_WARNED)
message(SEND_ERROR "HAVE_STDDEF_H_CXX_3 warned but should not have")
endif()
unset(_CIF_CMP0075_WARNED)
#----------------------------------------------------------------------------
check_include_files("stddef.h;stdlib.h" HAVE_STDLIB_H_3)
if(NOT HAVE_STDLIB_H_3)
message(SEND_ERROR "HAVE_STDLIB_H_3 failed but should have passed.")
endif()
if(_CIF_CMP0075_WARNED)
message(SEND_ERROR "HAVE_STDLIB_H_3 warned but should not have")
endif()
unset(_CIF_CMP0075_WARNED)
#============================================================================
cmake_policy(SET CMP0075 NEW)
# These should not warn.
# These should fail the checks due to requiring 'does_not_exist'.
check_include_file("stddef.h" HAVE_STDDEF_H_4)
if(HAVE_STDDEF_H_4)
message(SEND_ERROR "HAVE_STDDEF_H_4 passed but should have failed.")
endif()
if(_CIF_CMP0075_WARNED)
message(SEND_ERROR "HAVE_STDDEF_H_4 warned but should not have")
endif()
unset(_CIF_CMP0075_WARNED)
#----------------------------------------------------------------------------
check_include_file_cxx("stddef.h" HAVE_STDDEF_H_CXX_4)
if(HAVE_STDDEF_H_CXX_4)
message(SEND_ERROR "HAVE_STDDEF_H_CXX_4 passed but should have failed.")
endif()
if(_CIF_CMP0075_WARNED)
message(SEND_ERROR "HAVE_STDDEF_H_CXX_4 warned but should not have")
endif()
unset(_CIF_CMP0075_WARNED)
#----------------------------------------------------------------------------
check_include_files("stddef.h;stdlib.h" HAVE_STDLIB_H_4)
if(HAVE_STDLIB_H_4)
message(SEND_ERROR "HAVE_STDLIB_H_4 passed but should have failed.")
endif()
if(_CIF_CMP0075_WARNED)
message(SEND_ERROR "HAVE_STDLIB_H_4 warned but should not have")
endif()
unset(_CIF_CMP0075_WARNED)
|