[LLD] [COFF] Implement MinGW default manifest handling
[llvm-complete.git] / cmake / modules / GenerateVersionFromVCS.cmake
blobd8ec54df41ebd5eb1e02707b74050209e592142b
1 # CMake script that writes version control information to a header.
3 # Input variables:
4 #   NAMES             - A list of names for each of the source directories.
5 #   <NAME>_SOURCE_DIR - A path to source directory for each name in NAMES.
6 #   HEADER_FILE       - The header file to write
8 # The output header will contain macros <NAME>_REPOSITORY and <NAME>_REVISION,
9 # where "<NAME>" is substituted with the names specified in the input variables,
10 # for each of the <NAME>_SOURCE_DIR given.
12 get_filename_component(LLVM_CMAKE_DIR "${CMAKE_SCRIPT_MODE_FILE}" PATH)
14 list(APPEND CMAKE_MODULE_PATH "${LLVM_CMAKE_DIR}")
16 include(VersionFromVCS)
18 # Handle strange terminals
19 set(ENV{TERM} "dumb")
21 function(append_info name path)
22   if(path)
23     get_source_info("${path}" revision repository)
24   endif()
25   if(revision)
26     file(APPEND "${HEADER_FILE}.tmp"
27       "#define ${name}_REVISION \"${revision}\"\n")
28   else()
29     file(APPEND "${HEADER_FILE}.tmp"
30       "#undef ${name}_REVISION\n")
31   endif()
32   if(repository)
33     file(APPEND "${HEADER_FILE}.tmp"
34       "#define ${name}_REPOSITORY \"${repository}\"\n")
35   else()
36     file(APPEND "${HEADER_FILE}.tmp"
37       "#undef ${name}_REPOSITORY\n")
38   endif()
39 endfunction()
41 foreach(name IN LISTS NAMES)
42   if(NOT DEFINED ${name}_SOURCE_DIR)
43     message(FATAL_ERROR "${name}_SOURCE_DIR is not defined")
44   endif()
45   append_info(${name} "${${name}_SOURCE_DIR}")
46 endforeach()
48 # Copy the file only if it has changed.
49 execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different
50   "${HEADER_FILE}.tmp" "${HEADER_FILE}")
51 file(REMOVE "${HEADER_FILE}.tmp")