Skip to content
Snippets Groups Projects
Commit 4903544c authored by Martijn Berger's avatar Martijn Berger
Browse files

On MSVC 2013 64 bit set the default to build a vista API targetted binary.

parent 2d26d1db
No related branches found
No related tags found
No related merge requests found
...@@ -247,6 +247,10 @@ CXX = 'cl.exe' ...@@ -247,6 +247,10 @@ CXX = 'cl.exe'
CFLAGS = [] CFLAGS = []
CCFLAGS = ['/nologo', '/J', '/W3', '/Gd', '/w34062', '/wd4018', '/wd4065', '/wd4127', '/wd4181', '/wd4200', '/wd4244', '/wd4267', '/wd4305', '/wd4800', '/we4013', '/we4431'] CCFLAGS = ['/nologo', '/J', '/W3', '/Gd', '/w34062', '/wd4018', '/wd4065', '/wd4127', '/wd4181', '/wd4200', '/wd4244', '/wd4267', '/wd4305', '/wd4800', '/we4013', '/we4431']
# We want to support Vista level ABI for x64
if VC_VERSION == '12.0':
CCFLAGS.append('/D_WIN32_WINNT=0x600')
CXXFLAGS = ['/EHsc'] CXXFLAGS = ['/EHsc']
BGE_CXXFLAGS = ['/O2', '/Ob2', '/EHsc', '/GR', '/fp:fast'] BGE_CXXFLAGS = ['/O2', '/Ob2', '/EHsc', '/GR', '/fp:fast']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment