選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

14 行
322B

  1. include(CheckCXXCompilerFlag)
  2. function(add_compile_options_if_supported)
  3. foreach(flag ${ARGN})
  4. set(option_var option_supported_${flag})
  5. CHECK_CXX_COMPILER_FLAG(${flag} ${option_var})
  6. if( ${option_var} )
  7. add_compile_options(${flag})
  8. endif()
  9. endforeach()
  10. endfunction()