WIP win64 support

This commit is contained in:
Latif Khalifa
2013-10-19 23:05:53 +02:00
parent d03a012a41
commit 32bed5660a
5 changed files with 28 additions and 11 deletions

View File

@@ -449,6 +449,7 @@ class WindowsSetup(PlatformSetup):
'ver' : r'11.0'
}
}
gens['vs2010'] = gens['vc100']
gens['vs2012'] = gens['vc110']
@@ -508,6 +509,9 @@ class WindowsSetup(PlatformSetup):
project_name=self.project_name,
word_size=self.word_size,
)
if self.word_size == 64:
args["generator"] += r' Win64'
#if simple:
# return 'cmake %(opts)s "%(dir)s"' % args
return ('cmake -G "%(generator)s" '