diff options
Diffstat (limited to 'cmake/FindPlatform.cmake')
-rw-r--r-- | cmake/FindPlatform.cmake | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/cmake/FindPlatform.cmake b/cmake/FindPlatform.cmake deleted file mode 100644 index 60ce00149b3..00000000000 --- a/cmake/FindPlatform.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# 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() |