windows: move arch defines to base.props

This commit is contained in:
Shawn Hoffman
2014-03-06 14:37:40 -08:00
parent e5b250fa79
commit 8995d299f2
2 changed files with 3 additions and 15 deletions

View File

@ -101,20 +101,6 @@ private:
#endif
// Architecture detection for Windows
// Architecture detection is done in cmake on all other platforms
// Windows is built on only x86/x86_64
#if _WIN32 || _WIN64
#define _M_X86 1
#if _WIN64
#define _ARCH_64 1
#define _M_X86_64 1
#else
#define _ARCH_32 1
#define _M_X86_32 1
#endif
#endif
// Windows compatibility
#ifndef _WIN32
#include <limits.h>