blob: f42715bce3cc576505fd580a40737e9be565ed14 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import os
from wb import system, config, home_fn, cd_home
os.environ['PATH'] += ";%s\\VC" % (os.path.normpath(config['MSVC']),)
def build_vc(cmd):
system('cmd /c "vcvarsall.bat x86 && %s"' % (cmd,))
def main():
cd_home()
build_vc("nmake /f %s" % (home_fn('msvc.mak'),))
# if we are run directly, and not loaded as a module
if __name__ == "__main__":
main()
|