summaryrefslogtreecommitdiff
path: root/libs/raylib/cmake/AddIfFlagCompiles.cmake
blob: 403607b57ad5133e301e1691ea0d3d4bf28d4aee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
include(CheckCCompilerFlag)
function(add_if_flag_compiles flag)
  CHECK_C_COMPILER_FLAG("${flag}" COMPILER_HAS_THOSE_TOGGLES)
  set(outcome "Failed")
  if(COMPILER_HAS_THOSE_TOGGLES)
    foreach(var ${ARGN})
      set(${var} "${flag} ${${var}}" PARENT_SCOPE)
    endforeach()
    set(outcome "compiles")
  endif()
  message(STATUS "Testing if ${flag} can be used -- ${outcome}")
endfunction()