gsdx SW: enable new queue && C++11 on linux/MSVC 2012+

This commit is contained in:
Gregory Hainaut 2015-03-04 09:41:02 +01:00
parent d91e989abb
commit fa243afbab
1 changed files with 6 additions and 0 deletions

View File

@ -60,6 +60,12 @@
#endif
// Require at least Visual Studio 2012
#if defined(__linux__) || (defined(_MSC_VER) && (_MSC_VER >= 1700))
#define _CX11_
#define ENABLE_BOOST // queue is from boost but it doesn't require a full boost install
#endif
// put these into vc9/common7/ide/usertype.dat to have them highlighted
typedef unsigned char uint8;