0
0
mirror of https://github.com/OpenVPN/openvpn.git synced 2024-09-20 12:02:28 +02:00
openvpn/win/build.py

23 lines
575 B
Python
Raw Normal View History

import os, sys
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'),))
def clean():
cd_home()
build_vc("nmake /f %s clean" % (home_fn('msvc.mak'),))
# if we are run directly, and not loaded as a module
if __name__ == "__main__":
if len(sys.argv) == 2 and sys.argv[1] == 'clean':
clean()
else:
main()