ObjCxxStandard.cmake 258 B

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