mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Fix title bar
This commit is contained in:
		
							parent
							
								
									cf4125a6a5
								
							
						
					
					
						commit
						43c9695bf9
					
				
					 2 changed files with 16 additions and 6 deletions
				
			
		|  | @ -5,6 +5,10 @@ function(get_timestamp _var) | ||||||
| endfunction() | endfunction() | ||||||
| 
 | 
 | ||||||
| list(APPEND CMAKE_MODULE_PATH "${SRC_DIR}/externals/cmake-modules") | list(APPEND CMAKE_MODULE_PATH "${SRC_DIR}/externals/cmake-modules") | ||||||
|  | 
 | ||||||
|  | # Find the package here with the known path so that the GetGit commands can find it as well | ||||||
|  | find_package(Git QUIET PATHS "${GIT_EXECUTABLE}") | ||||||
|  | 
 | ||||||
| # generate git/build information | # generate git/build information | ||||||
| include(GetGitRevisionDescription) | include(GetGitRevisionDescription) | ||||||
| get_git_head_revision(GIT_REF_SPEC GIT_REV) | get_git_head_revision(GIT_REF_SPEC GIT_REV) | ||||||
|  | @ -16,20 +20,21 @@ get_timestamp(BUILD_DATE) | ||||||
| # Also if this is a CI build, add the build name (ie: Nightly, Canary) to the scm_rev file as well | # Also if this is a CI build, add the build name (ie: Nightly, Canary) to the scm_rev file as well | ||||||
| set(REPO_NAME "") | set(REPO_NAME "") | ||||||
| set(BUILD_VERSION "0") | set(BUILD_VERSION "0") | ||||||
| if ($ENV{CI}) | if (DEFINED ENV{CI}) | ||||||
|   if ($ENV{TRAVIS}) |   if (DEFINED ENV{TRAVIS}) | ||||||
|     set(BUILD_REPOSITORY $ENV{TRAVIS_REPO_SLUG}) |     set(BUILD_REPOSITORY $ENV{TRAVIS_REPO_SLUG}) | ||||||
|     set(BUILD_TAG $ENV{TRAVIS_TAG}) |     set(BUILD_TAG $ENV{TRAVIS_TAG}) | ||||||
|   elseif($ENV{APPVEYOR}) |   elseif(DEFINED ENV{APPVEYOR}) | ||||||
|     set(BUILD_REPOSITORY $ENV{APPVEYOR_REPO_NAME}) |     set(BUILD_REPOSITORY $ENV{APPVEYOR_REPO_NAME}) | ||||||
|     set(BUILD_TAG $ENV{APPVEYOR_REPO_TAG_NAME}) |     set(BUILD_TAG $ENV{APPVEYOR_REPO_TAG_NAME}) | ||||||
|   elseif($ENV{BITRISE_IO}) |   elseif(DEFINED ENV{BITRISE_IO}) | ||||||
|     set(BUILD_REPOSITORY "$ENV{BITRISEIO_GIT_REPOSITORY_OWNER}/$ENV{BITRISEIO_GIT_REPOSITORY_SLUG}") |     set(BUILD_REPOSITORY "$ENV{BITRISEIO_GIT_REPOSITORY_OWNER}/$ENV{BITRISEIO_GIT_REPOSITORY_SLUG}") | ||||||
|     set(BUILD_TAG $ENV{BITRISE_GIT_TAG}) |     set(BUILD_TAG $ENV{BITRISE_GIT_TAG}) | ||||||
|   endif() |   endif() | ||||||
|  | 
 | ||||||
|   # regex capture the string nightly or canary into CMAKE_MATCH_1 |   # regex capture the string nightly or canary into CMAKE_MATCH_1 | ||||||
|   string(REGEX MATCH "citra-emu/citra-?(.*)" OUTVAR ${BUILD_REPOSITORY}) |   string(REGEX MATCH "citra-emu/citra-?(.*)" OUTVAR ${BUILD_REPOSITORY}) | ||||||
|   if (${CMAKE_MATCH_COUNT} GREATER 0) |   if ("${CMAKE_MATCH_COUNT}" GREATER 0) | ||||||
|     # capitalize the first letter of each word in the repo name. |     # capitalize the first letter of each word in the repo name. | ||||||
|     string(REPLACE "-" ";" REPO_NAME_LIST ${CMAKE_MATCH_1}) |     string(REPLACE "-" ";" REPO_NAME_LIST ${CMAKE_MATCH_1}) | ||||||
|     foreach(WORD ${REPO_NAME_LIST}) |     foreach(WORD ${REPO_NAME_LIST}) | ||||||
|  | @ -82,4 +87,4 @@ foreach (F IN LISTS HASH_FILES) | ||||||
|     set(COMBINED "${COMBINED}${TMP}") |     set(COMBINED "${COMBINED}${TMP}") | ||||||
| endforeach() | endforeach() | ||||||
| string(MD5 SHADER_CACHE_VERSION "${COMBINED}") | string(MD5 SHADER_CACHE_VERSION "${COMBINED}") | ||||||
| configure_file("${SRC_DIR}/src/common/scm_rev.cpp.in" "scm_rev.cpp" @ONLY) | configure_file("${SRC_DIR}/src/common/scm_rev.cpp.in" "scm_rev.cpp" @ONLY) | ||||||
|  |  | ||||||
|  | @ -12,11 +12,16 @@ if (DEFINED ENV{CI}) | ||||||
|     set(BUILD_TAG $ENV{APPVEYOR_REPO_TAG_NAME}) |     set(BUILD_TAG $ENV{APPVEYOR_REPO_TAG_NAME}) | ||||||
|   endif() |   endif() | ||||||
| endif() | endif() | ||||||
|  | 
 | ||||||
|  | # Pass the path to git to the GenerateSCMRev.cmake as well | ||||||
|  | find_package(Git QUIET) | ||||||
|  | 
 | ||||||
| add_custom_command(OUTPUT scm_rev.cpp | add_custom_command(OUTPUT scm_rev.cpp | ||||||
|     COMMAND ${CMAKE_COMMAND} |     COMMAND ${CMAKE_COMMAND} | ||||||
|       -DSRC_DIR="${CMAKE_SOURCE_DIR}" |       -DSRC_DIR="${CMAKE_SOURCE_DIR}" | ||||||
|       -DBUILD_REPOSITORY="${BUILD_REPOSITORY}" |       -DBUILD_REPOSITORY="${BUILD_REPOSITORY}" | ||||||
|       -DBUILD_TAG="${BUILD_TAG}" |       -DBUILD_TAG="${BUILD_TAG}" | ||||||
|  |       -DGIT_EXECUTABLE="${GIT_EXECUTABLE}" | ||||||
|       -P "${CMAKE_SOURCE_DIR}/CMakeModules/GenerateSCMRev.cmake" |       -P "${CMAKE_SOURCE_DIR}/CMakeModules/GenerateSCMRev.cmake" | ||||||
|     DEPENDS |     DEPENDS | ||||||
|       # WARNING! It was too much work to try and make a common location for this list, |       # WARNING! It was too much work to try and make a common location for this list, | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue