diff options
| author | 2019-09-22 18:14:08 -0600 | |
|---|---|---|
| committer | 2019-09-22 18:14:08 -0600 | |
| commit | 2f5545f8de907d1e58b65d4f75b4403628d6a136 (patch) | |
| tree | 27fcf6c5f21e1c28ef0887b1ca68cce4bbd770aa /src | |
| parent | ci: Split mainline pipeline and add support for GitHub releases (#2900) (diff) | |
| parent | ci: Correct GitHub Release name (diff) | |
| download | yuzu-2f5545f8de907d1e58b65d4f75b4403628d6a136.tar.gz yuzu-2f5545f8de907d1e58b65d4f75b4403628d6a136.tar.xz yuzu-2f5545f8de907d1e58b65d4f75b4403628d6a136.zip | |
Merge pull request #2901 from DarkLordZach/mainline-title-bar
ci: Properly parse Azure CI details in title bar
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 01abdb3bb..dfed8b51d 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt | |||
| @@ -10,6 +10,9 @@ if (DEFINED ENV{CI}) | |||
| 10 | elseif(DEFINED ENV{APPVEYOR}) | 10 | elseif(DEFINED ENV{APPVEYOR}) |
| 11 | set(BUILD_REPOSITORY $ENV{APPVEYOR_REPO_NAME}) | 11 | set(BUILD_REPOSITORY $ENV{APPVEYOR_REPO_NAME}) |
| 12 | set(BUILD_TAG $ENV{APPVEYOR_REPO_TAG_NAME}) | 12 | set(BUILD_TAG $ENV{APPVEYOR_REPO_TAG_NAME}) |
| 13 | elseif(DEFINED ENV{AZURE}) | ||
| 14 | set(BUILD_REPOSITORY $ENV{AZURE_REPO_NAME}) | ||
| 15 | set(BUILD_TAG $ENV{AZURE_REPO_TAG}) | ||
| 13 | endif() | 16 | endif() |
| 14 | endif() | 17 | endif() |
| 15 | add_custom_command(OUTPUT scm_rev.cpp | 18 | add_custom_command(OUTPUT scm_rev.cpp |