win: No longer support building with VS Express

The Community edition can provide everything we need for Professional
edition.
This commit is contained in:
Cheng Zhao 2014-12-11 19:47:15 -08:00
parent 290dd4ccd8
commit e38614ce31
3 changed files with 0 additions and 32 deletions

View file

@ -932,31 +932,5 @@
}, # target generate_node_lib }, # target generate_node_lib
], ],
}], # OS==win }], # OS==win
# Using Visual Studio Express.
['msvs_express==1', {
'target_defaults': {
'defines!': [
'_SECURE_ATL',
],
'msvs_settings': {
'VCLibrarianTool': {
'AdditionalLibraryDirectories': [
'<(atom_source_root)/external_binaries/atl/lib',
],
},
'VCLinkerTool': {
'AdditionalLibraryDirectories': [
'<(atom_source_root)/external_binaries/atl/lib',
],
'AdditionalDependencies': [
'atls.lib',
],
},
},
'msvs_system_include_dirs': [
'<(atom_source_root)/external_binaries/atl/include',
],
},
}], # msvs_express==1
], ],
} }

View file

@ -6,11 +6,6 @@
['OS=="mac" or OS=="linux"', { ['OS=="mac" or OS=="linux"', {
'clang': 1, 'clang': 1,
}], }],
['OS=="win" and (MSVS_VERSION=="2013e" or MSVS_VERSION=="2012e" or MSVS_VERSION=="2010e")', {
'msvs_express': 1,
},{
'msvs_express': 0,
}],
], ],
# Required by breakpad. # Required by breakpad.
'os_bsd': 0, 'os_bsd': 0,

View file

@ -28,7 +28,6 @@ def main():
download_and_unzip('ReactiveCocoa') download_and_unzip('ReactiveCocoa')
download_and_unzip('Squirrel') download_and_unzip('Squirrel')
elif sys.platform in ['cygwin', 'win32']: elif sys.platform in ['cygwin', 'win32']:
download_and_unzip('atl')
download_and_unzip('directxsdk') download_and_unzip('directxsdk')
download_and_unzip('vs2012_crt') download_and_unzip('vs2012_crt')