Make git a required build dependency

This commit is contained in:
Mario Hüttel 2023-01-01 21:04:03 +01:00
parent 745e7db78f
commit 767aa75c25
1 changed files with 1 additions and 2 deletions

View File

@ -38,9 +38,8 @@ if (GIT_FOUND)
)
message("${BoldGreen}Git based version number: ${GIT_DESCRIBE}${ColorReset}")
else (GIT_FOUND)
set(GIT_DESCRIBE "v0.0.0-unknown")
message("${BoldRed}No git installation found. It is highly recommended using git to generate the version number")
message("Version is set to: ${GIT_DESCRIBE}${ColorReset}")
message(FATAL_ERROR "Git is required")
endif (GIT_FOUND)
find_program(PATCHELFCRC patchelfcrc)