From 6bde4467ab33100698d0efc18c3bd563f0b0aaf6 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Mon, 6 May 2024 19:12:18 +0200 Subject: [PATCH] Error on 32 bit build --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index deff32848..e34eda3fd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -115,7 +115,7 @@ include(GNUInstallDirs) if(CMAKE_SIZEOF_VOID_P EQUAL 8) message(STATUS "Building on a 64 bit system") else() - message(STATUS "Building on a 32 bit system") + message(FATAL_ERROR "Building on a 32 bit system is not supported") endif() include_directories(BEFORE ${CMAKE_CURRENT_BINARY_DIR}/include/)