diff options
author | SilverBeamx <molto.falso@gmail.com> | 2020-04-07 15:54:19 +0200 |
---|---|---|
committer | SilverBeamx <molto.falso@gmail.com> | 2020-04-07 15:54:19 +0200 |
commit | 22b5d5211e125f8f59c29caf21f16e6fc5d912ab (patch) | |
tree | 350df64dd6f4c592f568891e316c25f1bfc2ce56 /CMakeModules/GenerateSCMRev.cmake | |
parent | file_sys: fix LayeredFS error when loading some games made with… (#3602) (diff) | |
download | yuzu-22b5d5211e125f8f59c29caf21f16e6fc5d912ab.tar yuzu-22b5d5211e125f8f59c29caf21f16e6fc5d912ab.tar.gz yuzu-22b5d5211e125f8f59c29caf21f16e6fc5d912ab.tar.bz2 yuzu-22b5d5211e125f8f59c29caf21f16e6fc5d912ab.tar.lz yuzu-22b5d5211e125f8f59c29caf21f16e6fc5d912ab.tar.xz yuzu-22b5d5211e125f8f59c29caf21f16e6fc5d912ab.tar.zst yuzu-22b5d5211e125f8f59c29caf21f16e6fc5d912ab.zip |
Diffstat (limited to '')
-rw-r--r-- | CMakeModules/GenerateSCMRev.cmake | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/CMakeModules/GenerateSCMRev.cmake b/CMakeModules/GenerateSCMRev.cmake index 83e4e9df2..787e30df1 100644 --- a/CMakeModules/GenerateSCMRev.cmake +++ b/CMakeModules/GenerateSCMRev.cmake @@ -48,6 +48,25 @@ if (BUILD_REPOSITORY) endif() endif() +# "Hack": Generate BUILD_FULLNAME from the Git desc +if (GIT_DESC) + # regex capture the characters before the first "-" into CMAKE_MATCH_1 + string(REGEX MATCH "^([a-z]*)-.*" OUTVAR ${GIT_DESC}) + if ("${CMAKE_MATCH_COUNT}" GREATER 0) + # capitalize the first letter of the repo name. + string(SUBSTRING ${CMAKE_MATCH_1} 0 1 FIRST_LETTER) + string(SUBSTRING ${CMAKE_MATCH_1} 1 -1 REMAINDER) + string(TOUPPER ${FIRST_LETTER} FIRST_LETTER) + set(REPO_NAME "${FIRST_LETTER}${REMAINDER}") + + # If GIT_DESC has been parsed correctly, build the BUILD_FULLNAME from the repo name and the + # build version + if(REPO_NAME) + set(BUILD_FULLNAME "${REPO_NAME} ${BUILD_ID} ") + endif() + endif() +endif() + # The variable SRC_DIR must be passed into the script (since it uses the current build directory for all values of CMAKE_*_DIR) set(VIDEO_CORE "${SRC_DIR}/src/video_core") set(HASH_FILES |