Download redist files of VS2015

This commit is contained in:
Cheng Zhao 2016-05-15 10:30:19 +09:00
parent 14906eb6c8
commit 800ab50b56
2 changed files with 5 additions and 5 deletions

View file

@ -36,8 +36,7 @@ TARGET_BINARIES = {
'icudtl.dat', 'icudtl.dat',
'libEGL.dll', 'libEGL.dll',
'libGLESv2.dll', 'libGLESv2.dll',
'msvcp120.dll', 'msvcp140.dll',
'msvcr120.dll',
'ffmpeg.dll', 'ffmpeg.dll',
'node.dll', 'node.dll',
'content_resources_200_percent.pak', 'content_resources_200_percent.pak',
@ -45,7 +44,8 @@ TARGET_BINARIES = {
'xinput1_3.dll', 'xinput1_3.dll',
'natives_blob.bin', 'natives_blob.bin',
'snapshot_blob.bin', 'snapshot_blob.bin',
'vccorlib120.dll', 'vccorlib140.dll',
'vcruntime140.dll',
], ],
'linux': [ 'linux': [
PROJECT_NAME, # 'electron' PROJECT_NAME, # 'electron'

View file

@ -8,7 +8,7 @@ from lib.config import get_target_arch
from lib.util import safe_mkdir, rm_rf, extract_zip, tempdir, download from lib.util import safe_mkdir, rm_rf, extract_zip, tempdir, download
VERSION = 'v0.8.0' VERSION = 'v1.0.0'
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
FRAMEWORKS_URL = 'http://github.com/atom/atom-shell-frameworks/releases' \ FRAMEWORKS_URL = 'http://github.com/atom/atom-shell-frameworks/releases' \
'/download/' + VERSION '/download/' + VERSION
@ -30,7 +30,7 @@ def main():
download_and_unzip('Squirrel') download_and_unzip('Squirrel')
elif sys.platform in ['cygwin', 'win32']: elif sys.platform in ['cygwin', 'win32']:
download_and_unzip('directxsdk-' + get_target_arch()) download_and_unzip('directxsdk-' + get_target_arch())
download_and_unzip('vs2012-crt-' + get_target_arch()) download_and_unzip('vs2015-crt-' + get_target_arch())
with open(version_file, 'w') as f: with open(version_file, 'w') as f:
f.write(VERSION) f.write(VERSION)