mirror of https://github.com/axmolengine/axmol.git
fix v3 win32 build issue
This commit is contained in:
parent
23e49fe2b7
commit
2e2fb122e6
|
@ -267,7 +267,10 @@ def main():
|
|||
|
||||
close_db(db)
|
||||
elif(node_name == 'win32' or node_name == 'win32_win7' or node_name == 'win32_bak'):
|
||||
ret = subprocess.call('"%VS120COMNTOOLS%..\IDE\devenv.com" "build\cocos2d-win32.vc2013.sln" /Build "Debug|Win32"', shell=True)
|
||||
build_vs_project_name = 'cocos2d-win32.vc2013.sln'
|
||||
if(branch == 'v3'):
|
||||
build_vs_project_name = 'cocos2d-win32.vc2012.sln'
|
||||
ret = subprocess.call('"%VS120COMNTOOLS%..\IDE\devenv.com" "build\"' + build_vs_project_name + ' /Build "Debug|Win32"', shell=True)
|
||||
elif(node_name == 'windows-universal' or node_name == 'windows-universal_bak'):
|
||||
ret = subprocess.call('"%VS120COMNTOOLS%..\IDE\devenv.com" "build\cocos2d-win8.1-universal.sln" /Build "Debug|Win32"', shell=True)
|
||||
elif(node_name == 'ios_mac' or node_name == 'ios' or node_name == 'ios_bak'):
|
||||
|
|
Loading…
Reference in New Issue