summaryrefslogtreecommitdiff
path: root/tools/cmake
diff options
context:
space:
mode:
authorAlex Kutsan <akutsan@luxoft.com>2017-03-06 16:44:12 +0200
committerJacob Keeler <jacob.keeler@livioradio.com>2017-05-16 10:08:13 -0400
commitd3a44111f88bbe41f7c35944f19b4eafe4dfd6bb (patch)
treed1dd943af7c840c45d0f33bd6a033c52d061f617 /tools/cmake
parentd00b9592032b695d841ba5ceebd49976d2be48a2 (diff)
downloadsdl_core-d3a44111f88bbe41f7c35944f19b4eafe4dfd6bb.tar.gz
Fixed typo x86 -> x64
Diffstat (limited to 'tools/cmake')
-rw-r--r--tools/cmake/helpers/platform.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/cmake/helpers/platform.cmake b/tools/cmake/helpers/platform.cmake
index 14a29a67a8..961b41d689 100644
--- a/tools/cmake/helpers/platform.cmake
+++ b/tools/cmake/helpers/platform.cmake
@@ -76,7 +76,7 @@ endfunction()
function(get_arch ARCH)
if( CMAKE_SIZEOF_VOID_P MATCHES 8 )
# void ptr = 8 byte --> x86_64
- set(${ARCH} "x86" PARENT_SCOPE)
+ set(${ARCH} "x64" PARENT_SCOPE)
elseif( CMAKE_SIZEOF_VOID_P MATCHES 4 )
# void ptr = 4 byte --> x86
set(${ARCH} "x86" PARENT_SCOPE)