summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/target_compile_features/no_matching_c_feature.cmake
blob: a44caf29a389fab7f359d078b10316915b2c405a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

if (NOT ";${CMAKE_C_COMPILE_FEATURES};" MATCHES ";gnu_c_typeof;")
  # Simulate passing the test.
  message(SEND_ERROR
    "The compiler feature \"gnu_c_dummy\" is not known to C compiler\n\"GNU\"\nversion 4.8.1."
  )
  return()
endif()

add_executable(main empty.c)

target_compile_features(main
  PRIVATE
    gnu_c_typeof
)