mirror of https://github.com/PCSX2/pcsx2.git
gsdx SW: enable new queue && C++11 on linux/MSVC 2012+
This commit is contained in:
parent
d91e989abb
commit
fa243afbab
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue