From 371410d49bae185bb6ae3caeb1cc7b43d9aa8c66 Mon Sep 17 00:00:00 2001 From: Morgan Hardwood Date: Wed, 12 Apr 2017 14:04:32 +0200 Subject: [PATCH] Fixed incorrect elseif in /CMakeLists.txt, #3819 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d1893ca33..5fd9e168f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -354,7 +354,7 @@ endif() # Set the platform bit-depth: if(CMAKE_SIZEOF_VOID_P EQUAL 4) set(PROC_BIT_DEPTH 32 bits) -elseif() +else() set(PROC_BIT_DEPTH 64 bits) endif()