From 7c47010d57467cc738a209dd7e68f813ad6c91d7 Mon Sep 17 00:00:00 2001 From: Jochen Wilhelmy Date: Tue, 16 Aug 2016 15:19:51 +0200 Subject: [PATCH] Adds missing DEFINED in check for 64 bit system --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 11887ad..ae775c4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -186,7 +186,7 @@ if(NOT CMAKE_INSTALL_PREFIX) endif(NOT CMAKE_INSTALL_PREFIX) # Check if it is a 64 bit system -if(CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT LIB_SUFFIX) +if(CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT DEFINED LIB_SUFFIX) set(LIB_SUFFIX "64") endif()