ObjCStandard.cmake 253 B

1234567891011
  1. include(${CMAKE_CURRENT_SOURCE_DIR}/${try_compile_DEFS})
  2. enable_language(OBJC)
  3. try_compile(result ${try_compile_bindir_or_SOURCES}
  4. ${CMAKE_CURRENT_SOURCE_DIR}/src.m
  5. OBJC_STANDARD 3
  6. OUTPUT_VARIABLE out
  7. )
  8. message("try_compile output:\n${out}")