You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							|  | include(CheckCXXCompilerFlag)
function(add_compile_options_if_supported)
    foreach(flag ${ARGN})
        set(option_var option_supported_${flag})
        CHECK_CXX_COMPILER_FLAG(${flag} ${option_var})
        if( ${option_var} )
            add_compile_options(${flag})
        endif()
    endforeach()
endfunction()
 |