mirror of
https://github.com/UltraCoderRU/libwebrtc.git
synced 2026-01-28 03:15:11 +00:00
9 lines
239 B
Python
9 lines
239 B
Python
import os
|
|
import sys
|
|
import vs_toolchain
|
|
|
|
if sys.platform == 'win32':
|
|
vs_toolchain.GetToolchainDir()
|
|
os.environ['PATH'] += os.pathsep + os.environ['GYP_MSVS_OVERRIDE_PATH'] + '\\VC\\bin'
|
|
|
|
execfile('src/webrtc/build/merge_libs.py')
|