diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2014-10-21 13:52:24 -0400 |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2014-10-23 16:42:34 -0400 |
commit | eba180a1c786c4a86ead7e46f6e19febef4dd940 (patch) | |
tree | d02cef7ce4a390acc2b2854622563d881aedb991 | |
parent | cmake: fix up BOOST_IGNORE_SYSTEM_PATHS (diff) | |
download | monero-eba180a1c786c4a86ead7e46f6e19febef4dd940.tar.xz |
cmake: support git info in released tarballs
Diffstat (limited to '')
-rw-r--r-- | .gitattributes | 2 | ||||
-rw-r--r-- | CMakeLists.txt | 12 | ||||
-rw-r--r-- | version.cmake | 23 |
3 files changed, 25 insertions, 12 deletions
diff --git a/.gitattributes b/.gitattributes index 6afd357c2..f75097ecd 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,2 @@ .git* export-ignore -/CMakeLists.txt export-subst
\ No newline at end of file +version.cmake export-subst diff --git a/CMakeLists.txt b/CMakeLists.txt index ac5cc395a..bdb347191 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -228,17 +228,7 @@ elseif(NOT MSVC) set(EXTRA_LIBRARIES ${RT} ${PTHREAD} ${DL}) endif() -file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/version") -find_package(Git QUIET) -if(Git_FOUND OR GIT_FOUND) - message(STATUS "Found Git: ${GIT_EXECUTABLE}") - add_custom_target(version ALL "${CMAKE_COMMAND}" "-D" "GIT=${GIT_EXECUTABLE}" "-D" "TO=${CMAKE_BINARY_DIR}/version/version.h" "-P" "src/version.cmake" WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}") -else() - message(STATUS "WARNING: Git was not found!") - set(VERSIONTAG "unknown") - configure_file("src/version.h.in" "version/version.h") - add_custom_target(version ALL) -endif() +include(version.cmake) add_subdirectory(src) add_subdirectory(tests) diff --git a/version.cmake b/version.cmake new file mode 100644 index 000000000..4dd6db6d4 --- /dev/null +++ b/version.cmake @@ -0,0 +1,23 @@ +function (write_static_version_header hash) + set(VERSIONTAG "${hash}") + configure_file("src/version.h.in" "version/version.h") + add_custom_target(version ALL) +endfunction () + +file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/version") +find_package(Git QUIET) +if ("$Format:$" STREQUAL "") + # We're in a tarball; use hard-coded variables. + write_static_version_header("release") +elseif (GIT_FOUND OR Git_FOUND) + message(STATUS "Found Git: ${GIT_EXECUTABLE}") + add_custom_target(version ALL + COMMAND "${CMAKE_COMMAND}" + "-D" "GIT=${GIT_EXECUTABLE}" + "-D" "TO=${CMAKE_BINARY_DIR}/version/version.h" + "-P" "src/version.cmake" + WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}") +else() + message(STATUS "WARNING: Git was not found!") + write_static_version_header("unknown") +endif () |