From 56a1bf527b7a522802f99e6589972e79e34750e0 Mon Sep 17 00:00:00 2001 From: Riccardo Spagni Date: Tue, 3 Mar 2015 21:57:40 +0200 Subject: [PATCH] fixed BUILD_64 option --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b3606157..875936ee7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -71,7 +71,7 @@ if(CMAKE_SIZEOF_VOID_P EQUAL "8") else() set(DEFAULT_BUILD_64 OFF) endif() -option(BUILD_64 "Build for 64-bit? 'No' builds for 32-bit." ${DEFAULT_BUILD_64}) +option(BUILD_64 "Build for 64-bit? 'OFF' builds for 32-bit." ${DEFAULT_BUILD_64}) if(BUILD_64) set(ARCH_WIDTH "64")