CMakeLists.txt: Move the program name display to the build summary.

It previously got lost in the cruft of all the other CMake messages.
This commit is contained in:
David Korth 2022-07-04 05:18:00 -04:00
parent fd0691c8d4
commit 350b5c98b4

View File

@ -15,7 +15,6 @@ IF(PROJECT_VERSION_TWEAK)
SET(PROJECT_VERSION_DEVEL_PLUS "+")
ENDIF(PROJECT_VERSION_TWEAK)
SET(RP_DISPLAY_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}${PROJECT_VERSION_DEVEL_PLUS}")
MESSAGE(STATUS "ROM Properties Page Shell Extension v${RP_DISPLAY_VERSION}")
# CMAKE_PROJECT_VERSION was introduced in 3.12.
IF(NOT CMAKE_PROJECT_VERSION OR NOT CMAKE_PROJECT_VERSION_MAJOR)
@ -278,9 +277,11 @@ IF(BUILD_TESTING)
ENDIF(BUILD_TESTING)
MESSAGE("
*** rom-properties build summary ***
MESSAGE(STATUS "
*** ROM Properties Page Shell Extension v${RP_DISPLAY_VERSION} ***
Build Summary:
- Building these UI frontends: ${UI_FRONTENDS}
- Building command-line frontend: ${CLI_BUILD_MSG}
- Security mechanism: ${SECURITY_MECHANISM}
@ -291,7 +292,7 @@ MESSAGE("
- LZ4 decompression: ${ENABLE_LZ4_MSG}
- LZO decompression: ${ENABLE_LZO_MSG}
- Building these third-party libraries from extlib:
Building these third-party libraries from extlib:
${EXTLIB_BUILD}")
IF(NOT UI_FRONTENDS)