您最多选择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()