You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CMake/ScmRevGen.cmake
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,9 @@ if(GIT_FOUND)
7
7
OUTPUT_VARIABLE DOLPHIN_WC_REVISION
8
8
OUTPUT_STRIP_TRAILING_WHITESPACE)
9
9
# defines DOLPHIN_WC_DESCRIBE
10
-
#execute_process(WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} COMMAND ${GIT_EXECUTABLE} describe --always --long # --dirty # removed from here while we're using a patch for SDL; will likely be fixed in the future
11
-
# OUTPUT_VARIABLE DOLPHIN_WC_DESCRIBE
12
-
# OUTPUT_STRIP_TRAILING_WHITESPACE)
13
-
set(DOLPHIN_WC_DESCRIBE "v3.1.2-mainline-beta.5")
10
+
execute_process(WORKING_DIRECTORY${PROJECT_SOURCE_DIR}COMMAND${GIT_EXECUTABLE} describe --tags # --always --long --dirty # removed from here while we're using a patch for SDL; will likely be fixed in the future
11
+
OUTPUT_VARIABLE DOLPHIN_WC_DESCRIBE
12
+
OUTPUT_STRIP_TRAILING_WHITESPACE)
14
13
15
14
# remove hash (and trailing "-0" if needed) from description
0 commit comments