From 918f8c0d62b18cd1d3dbaa3ba721825fbe38c95d Mon Sep 17 00:00:00 2001 From: Robert Adam Date: Tue, 1 Sep 2020 11:00:35 +0200 Subject: BUILD(cmake): Fix architecture output The previous output used x86 and 32bit as synonyms (as well as x64 and 64bit) which is incorrect. --- CMakeLists.txt | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 695362c2f..1ab958752 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -77,13 +77,15 @@ endif() include(compiler) include(os) -message(STATUS "##################################################") -message(STATUS "Building Mumble version: ${version}") -if(64_BIT) - message(STATUS "Architecture: 64bit (x64)") +if (64_BIT) + set(ARCH "64bit") else() - message(STATUS "Architecture: 32bit (x86)") + set(ARCH "32bit") endif() + +message(STATUS "##################################################") +message(STATUS "Mumble version: ${version}") +message(STATUS "Architecture: ${ARCH}") message(STATUS "##################################################") add_subdirectory(src) -- cgit v1.2.3