summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/try_compile/ObjCStandard.cmake
blob: b2066f9575a7591957fdbca96ee79e8ba9c769b8 (plain)
1
2
3
4
5
6
7
enable_language(OBJC)
try_compile(result ${CMAKE_CURRENT_BINARY_DIR}
  SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/src.m
  OBJC_STANDARD 3
  OUTPUT_VARIABLE out
  )
message("try_compile output:\n${out}")