diff options
author | Shauren <none@none> | 2010-10-03 16:30:22 +0200 |
---|---|---|
committer | Shauren <none@none> | 2010-10-03 16:30:22 +0200 |
commit | 6c35c376e9abc8a5b221ffbff7954f99b6835039 (patch) | |
tree | e239d351766148ce59d9befaa9ca4d4f1dc879b9 /cmake/genrev.cmake | |
parent | 13aa8cbbf5bcbac76ada6956e76e1d3b4d395360 (diff) |
Buildsystem: Generating revision.h is now a part of build process (revision.h is back as target)
Buildsystem: Removed non-existing include directories
--HG--
branch : trunk
Diffstat (limited to 'cmake/genrev.cmake')
-rw-r--r-- | cmake/genrev.cmake | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/cmake/genrev.cmake b/cmake/genrev.cmake new file mode 100644 index 00000000000..ecc9c282c9e --- /dev/null +++ b/cmake/genrev.cmake @@ -0,0 +1,65 @@ +# Copyright (C) 2008-2010 Trinity <http://www.trinitycore.org/> +# +# This file is free software; as a special exception the author gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the +# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +execute_process( + COMMAND hg id -n + WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}" + OUTPUT_VARIABLE hg_rev_id_str + OUTPUT_STRIP_TRAILING_WHITESPACE + ERROR_QUIET +) + +execute_process( + COMMAND hg id -i + WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}" + OUTPUT_VARIABLE hg_rev_hash_str + OUTPUT_STRIP_TRAILING_WHITESPACE + ERROR_QUIET +) + +if(EXISTS ${CMAKE_SOURCE_DIR}/.hg_archival.txt) + file(READ + ${CMAKE_SOURCE_DIR}/.hg_archival.txt hg_rev_hash_str + LIMIT 10 + OFFSET 7 + NEWLINE_CONSUME + ) + string(STRIP ${hg_rev_hash_str} hg_rev_hash_str) + set(hg_rev_id_str "Archive") + set(hg_rev_id "0") + set(hg_rev_hash ${hg_rev_hash_str}) +endif() + +# Last minute check - ensure that we have a proper revision +# If everything above fails (means the user has erased the mercurial revisional control directory, or runs archive and erased their .hg_archival.txt) +if(NOT hg_rev_id_str) + message("") + message(STATUS "WARNING - No revision-information found - have you been tampering with the sources?") + + # Ok, since we have no valid ways of finding/setting the revision, let's force some defaults + set(hg_rev_hash_str "Archive") + set(hg_rev_hash "0") + set(hg_rev_id_str "0") + set(hg_rev_id "0") +endif() + +# Strip off excess strings (shows when the source is actually modified) +if(NOT hg_rev_id_str MATCHES "Archive") + string(REPLACE "+" "" hg_rev_id ${hg_rev_id_str}) +endif() +string(REPLACE "+" "" hg_rev_hash ${hg_rev_hash_str}) + +# Create the actual revision.h file from the above params +configure_file( + "${CMAKE_SOURCE_DIR}/revision.h.in.cmake" + "${BUILDDIR}/revision.h" + @ONLY +) +message(STATUS "Created revision.h") |