summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Kutsan <akutsan@luxoft.com>2017-03-06 16:44:12 +0200
committerAlex Kutsan <akutsan@luxoft.com>2017-03-06 16:44:12 +0200
commitce6143434c0002e26d127d02842bac0c911b47bf (patch)
tree3db2f15497f88f662cf0385831727920994cfd08
parentdfb6417649146f59b441ab8b227cff65a97d7bda (diff)
downloadsdl_core-ce6143434c0002e26d127d02842bac0c911b47bf.tar.gz
Fixed typo x86 -> x64
-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)