Changeset 1908
- Timestamp:
- 2011-06-10 12:39:43 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
2011/23/build_games.py
r1906 r1908 22 22 dirs.remove('Windows Phone') 23 23 24 projects = glob(join(root, '*.csproj')) 25 if projects: 26 # return_code = call('msbuild ' + projects[0], shell=True, stdout=PIPE) 27 return_code = call('msbuild ' + projects[0], shell=True) 24 solutions = glob(join(root, '*.sln')) 25 if solutions: 26 return_code = call('msbuild ' + solutions[0], shell=True) 28 27 if return_code != 0: 29 projects_that_did_not_build.append( projects[0])28 projects_that_did_not_build.append(solutions[0]) 30 29 31 30 print ''
Note: See TracChangeset
for help on using the changeset viewer.