AddCCompilerFlag.cmake 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # - Adds a compiler flag if it is supported by the compiler
  2. #
  3. # This function checks that the supplied compiler flag is supported and then
  4. # adds it to the corresponding compiler flags
  5. #
  6. # add_c_compiler_flag(<FLAG> [<VARIANT>])
  7. #
  8. # - Example
  9. #
  10. # include(AddCCompilerFlag)
  11. # add_c_compiler_flag(-Wall)
  12. # add_c_compiler_flag(-no-strict-aliasing RELEASE)
  13. # Requires CMake 2.6+
  14. if(__add_c_compiler_flag)
  15. return()
  16. endif()
  17. set(__add_c_compiler_flag INCLUDED)
  18. include(CheckCCompilerFlag)
  19. function(add_c_compiler_flag FLAG)
  20. string(TOUPPER "HAVE_C_FLAG_${FLAG}" SANITIZED_FLAG)
  21. string(REPLACE "+" "X" SANITIZED_FLAG ${SANITIZED_FLAG})
  22. string(REGEX REPLACE "[^A-Za-z_0-9]" "_" SANITIZED_FLAG ${SANITIZED_FLAG})
  23. string(REGEX REPLACE "_+" "_" SANITIZED_FLAG ${SANITIZED_FLAG})
  24. set(CMAKE_REQUIRED_FLAGS "${FLAG}")
  25. check_c_compiler_flag("" ${SANITIZED_FLAG})
  26. if(${SANITIZED_FLAG})
  27. set(VARIANT ${ARGV1})
  28. if(ARGV1)
  29. string(REGEX REPLACE "[^A-Za-z_0-9]" "_" VARIANT "${VARIANT}")
  30. string(TOUPPER "_${VARIANT}" VARIANT)
  31. endif()
  32. set(CMAKE_C_FLAGS${VARIANT} "${CMAKE_C_FLAGS${VARIANT}} ${FLAG}" PARENT_SCOPE)
  33. endif()
  34. endfunction()