mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
6524f22a0e
llvm-svn: 301650
60 lines
1.9 KiB
CMake
60 lines
1.9 KiB
CMake
# Figure out if we can track VC revisions.
|
|
function(find_first_existing_file out_var)
|
|
foreach(file ${ARGN})
|
|
if(EXISTS "${file}")
|
|
set(${out_var} "${file}" PARENT_SCOPE)
|
|
return()
|
|
endif()
|
|
endforeach()
|
|
endfunction()
|
|
|
|
macro(find_first_existing_vc_file out_var path)
|
|
find_program(git_executable NAMES git git.exe git.cmd)
|
|
# Run from a subdirectory to force git to print an absolute path.
|
|
execute_process(COMMAND ${git_executable} rev-parse --git-dir
|
|
WORKING_DIRECTORY ${path}/cmake
|
|
RESULT_VARIABLE git_result
|
|
OUTPUT_VARIABLE git_dir
|
|
ERROR_QUIET)
|
|
if(git_result EQUAL 0)
|
|
string(STRIP "${git_dir}" git_dir)
|
|
set(${out_var} "${git_dir}/logs/HEAD")
|
|
# some branchless cases (e.g. 'repo') may not yet have .git/logs/HEAD
|
|
if (NOT EXISTS "${git_dir}/logs/HEAD")
|
|
file(WRITE "${git_dir}/logs/HEAD" "")
|
|
endif()
|
|
else()
|
|
find_first_existing_file(${out_var}
|
|
"${path}/.svn/wc.db" # SVN 1.7
|
|
"${path}/.svn/entries" # SVN 1.6
|
|
)
|
|
endif()
|
|
endmacro()
|
|
|
|
find_first_existing_vc_file(llvm_vc "${LLVM_MAIN_SRC_DIR}")
|
|
|
|
# The VC revision include that we want to generate.
|
|
set(version_inc "${CMAKE_CURRENT_BINARY_DIR}/VCSRevision.h")
|
|
|
|
set(get_svn_script "${LLVM_CMAKE_PATH}/GenerateVersionFromCVS.cmake")
|
|
|
|
if(DEFINED llvm_vc)
|
|
# Create custom target to generate the VC revision include.
|
|
add_custom_command(OUTPUT "${version_inc}"
|
|
DEPENDS "${llvm_vc}" "${get_svn_script}"
|
|
COMMAND
|
|
${CMAKE_COMMAND} "-DSOURCE_DIR=${LLVM_MAIN_SRC_DIR}"
|
|
"-DNAME=LLVM_REVISION"
|
|
"-DHEADER_FILE=${version_inc}"
|
|
-P "${get_svn_script}")
|
|
|
|
# Mark the generated header as being generated.
|
|
set_source_files_properties("${version_inc}"
|
|
PROPERTIES GENERATED TRUE
|
|
HEADER_FILE_ONLY TRUE)
|
|
else()
|
|
file(WRITE "${version_inc}" "")
|
|
endif()
|
|
|
|
add_custom_target(llvm_vcsrevision_h DEPENDS "${version_inc}")
|