Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2020-09-01 12:00:35 +0300
committerRobert Adam <dev@robert-adam.de>2020-09-01 12:00:35 +0300
commit918f8c0d62b18cd1d3dbaa3ba721825fbe38c95d (patch)
treeabdbd58969c058e76c8b1781d99c9db81d8296fc /CMakeLists.txt
parentfda302af9819d8391ea9972e97c9e2200bbfd520 (diff)
BUILD(cmake): Fix architecture output
The previous output used x86 and 32bit as synonyms (as well as x64 and 64bit) which is incorrect.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt12
1 files changed, 7 insertions, 5 deletions
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)