CMakeLists.txt 272 B

1234567891011121314
  1. cmake_minimum_required(VERSION 2.8.9)
  2. project(CompilerIdC C)
  3. foreach(v
  4. CMAKE_C_COMPILER
  5. CMAKE_C_COMPILER_ID
  6. CMAKE_C_COMPILER_VERSION
  7. )
  8. if(${v})
  9. message(STATUS "${v}=[${${v}}]")
  10. else()
  11. message(SEND_ERROR "${v} not set!")
  12. endif()
  13. endforeach()