From d405f3fca5b36e0161c28d842c05e4c9b07b4599 Mon Sep 17 00:00:00 2001 From: click Date: Wed, 30 Jun 2010 14:39:21 +0200 Subject: [PATCH] Add CMake platform-check (32/64-bit) (includes new test-variable ${PLATFORM} that defines X86/X64 basesystem) --HG-- branch : trunk --- CMakeLists.txt | 1 + cmake/FindPlatform.cmake | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 cmake/FindPlatform.cmake diff --git a/CMakeLists.txt b/CMakeLists.txt index e7118a2faa7..0718af32aaf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,6 +30,7 @@ endif() # include(CheckIncludeFiles) +include(cmake/FindPlatform.cmake) include(cmake/FindPCHSupport.cmake) if(WIN32) diff --git a/cmake/FindPlatform.cmake b/cmake/FindPlatform.cmake new file mode 100644 index 00000000000..60ce00149b3 --- /dev/null +++ b/cmake/FindPlatform.cmake @@ -0,0 +1,16 @@ +# default to x86 platform. We'll check for X64 in a bit +SET(PLATFORM X86) + +# This definition is necessary to work around a bug with Intellisense described +# here: http://tinyurl.com/2cb428. Syntax highlighting is important for proper +# debugger functionality. + +IF(CMAKE_SIZEOF_VOID_P MATCHES 8) + MESSAGE(STATUS "Detected 64-bit platform.") + if(WIN32) + ADD_DEFINITIONS("-D_WIN64") + ENDIF() + SET (PLATFORM X64) +ELSE() + MESSAGE(STATUS "Detected 32-bit platform.") +ENDIF()