CMakeAddNewLanguage.txt 733 B

1234567891011121314151617
  1. CMakeDetermine(LANG)Compiler.cmake -> this should find the compiler for LANG and configure CMake(LANG)Compiler.cmake.in
  2. CMake(LANG)Compiler.cmake.in -> used by CMakeDetermine(LANG)Compiler.cmake
  3. This file is used to store compiler information and is copied down into try
  4. compile directories so that try compiles do not need to re-determine and test the LANG
  5. CMakeTest(LANG)Compiler.cmake -> test the compiler and set:
  6. SET(CMAKE_(LANG)_COMPILER_WORKS 1 CACHE INTERNAL "")
  7. CMake(LANG)Information.cmake -> set up rule variables for LANG :
  8. CMAKE_(LANG)_CREATE_SHARED_LIBRARY
  9. CMAKE_(LANG)_CREATE_SHARED_MODULE
  10. CMAKE_(LANG)_CREATE_STATIC_LIBRARY
  11. CMAKE_(LANG)_COMPILE_OBJECT
  12. CMAKE_(LANG)_LINK_EXECUTABLE