2010-08-03 19:28:09 +02:00
|
|
|
# Adds version control information to the variable VERS. For
|
|
|
|
# determining the Version Control System used (if any) it inspects the
|
|
|
|
# existence of certain subdirectories under CMAKE_CURRENT_SOURCE_DIR.
|
|
|
|
|
|
|
|
function(add_version_info_from_vcs VERS)
|
2011-12-10 10:41:13 +01:00
|
|
|
string(REPLACE "svn" "" result "${${VERS}}")
|
2010-10-22 19:16:26 +02:00
|
|
|
if( EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.svn" )
|
2010-08-03 19:28:09 +02:00
|
|
|
set(result "${result}svn")
|
2010-10-22 19:16:26 +02:00
|
|
|
# FindSubversion does not work with symlinks. See PR 8437
|
|
|
|
if( NOT IS_SYMLINK "${CMAKE_CURRENT_SOURCE_DIR}" )
|
|
|
|
find_package(Subversion)
|
|
|
|
endif()
|
2010-08-03 19:28:09 +02:00
|
|
|
if( Subversion_FOUND )
|
|
|
|
subversion_wc_info( ${CMAKE_CURRENT_SOURCE_DIR} Project )
|
|
|
|
if( Project_WC_REVISION )
|
2011-12-10 11:04:38 +01:00
|
|
|
set(SVN_REVISION ${Project_WC_REVISION} PARENT_SCOPE)
|
2010-09-08 22:49:40 +02:00
|
|
|
set(result "${result}-r${Project_WC_REVISION}")
|
2010-08-03 19:28:09 +02:00
|
|
|
endif()
|
2016-01-14 23:44:29 +01:00
|
|
|
if( Project_WC_URL )
|
|
|
|
set(LLVM_REPOSITORY ${Project_WC_URL} PARENT_SCOPE)
|
|
|
|
endif()
|
2010-08-03 19:28:09 +02:00
|
|
|
endif()
|
|
|
|
elseif( EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.git )
|
|
|
|
set(result "${result}git")
|
2010-08-05 04:22:51 +02:00
|
|
|
# Try to get a ref-id
|
2012-12-10 20:03:37 +01:00
|
|
|
if( EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.git/svn )
|
|
|
|
find_program(git_executable NAMES git git.exe git.cmd)
|
|
|
|
if( git_executable )
|
|
|
|
set(is_git_svn_rev_exact false)
|
2016-01-19 18:36:02 +01:00
|
|
|
execute_process(COMMAND
|
|
|
|
${git_executable} svn info
|
2012-12-10 20:03:37 +01:00
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
TIMEOUT 5
|
|
|
|
RESULT_VARIABLE git_result
|
|
|
|
OUTPUT_VARIABLE git_output)
|
2010-09-08 22:49:40 +02:00
|
|
|
if( git_result EQUAL 0 )
|
2016-01-19 18:36:02 +01:00
|
|
|
string(REGEX MATCH "URL: ([^ \n]*)" svn_url ${git_output})
|
|
|
|
if(svn_url)
|
|
|
|
set(LLVM_REPOSITORY ${CMAKE_MATCH_1} PARENT_SCOPE)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
string(REGEX REPLACE "^(.*\n)?Revision: ([^\n]+).*"
|
|
|
|
"\\2" git_svn_rev_number "${git_output}")
|
2012-12-10 20:03:37 +01:00
|
|
|
set(SVN_REVISION ${git_svn_rev_number} PARENT_SCOPE)
|
|
|
|
set(git_svn_rev "-svn-${git_svn_rev}")
|
|
|
|
|
|
|
|
# Determine if the HEAD points directly at a subversion revision.
|
|
|
|
execute_process(COMMAND ${git_executable} svn find-rev HEAD
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
TIMEOUT 5
|
|
|
|
RESULT_VARIABLE git_result
|
|
|
|
OUTPUT_VARIABLE git_output)
|
|
|
|
if( git_result EQUAL 0 )
|
|
|
|
string(STRIP "${git_output}" git_head_svn_rev_number)
|
|
|
|
if( git_head_svn_rev_number EQUAL git_svn_rev_number )
|
|
|
|
set(is_git_svn_rev_exact true)
|
|
|
|
endif()
|
2011-12-10 10:41:13 +01:00
|
|
|
endif()
|
2012-12-10 20:03:37 +01:00
|
|
|
else()
|
|
|
|
set(git_svn_rev "")
|
|
|
|
endif()
|
|
|
|
execute_process(COMMAND
|
|
|
|
${git_executable} rev-parse --short HEAD
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
TIMEOUT 5
|
|
|
|
RESULT_VARIABLE git_result
|
|
|
|
OUTPUT_VARIABLE git_output)
|
|
|
|
if( git_result EQUAL 0 AND NOT is_git_svn_rev_exact )
|
|
|
|
string(STRIP "${git_output}" git_ref_id)
|
|
|
|
set(GIT_COMMIT ${git_ref_id} PARENT_SCOPE)
|
|
|
|
set(result "${result}${git_svn_rev}-${git_ref_id}")
|
|
|
|
else()
|
|
|
|
set(result "${result}${git_svn_rev}")
|
2010-09-08 22:49:40 +02:00
|
|
|
endif()
|
2016-01-14 23:44:29 +01:00
|
|
|
|
2010-08-05 04:22:51 +02:00
|
|
|
endif()
|
|
|
|
endif()
|
2010-08-03 19:28:09 +02:00
|
|
|
endif()
|
|
|
|
set(${VERS} ${result} PARENT_SCOPE)
|
|
|
|
endfunction(add_version_info_from_vcs)
|