- Timestamp:
- 2011-06-29 16:03:58 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
2011/26/build_games.py
r2325 r2326 16 16 projects_that_did_not_build = [] 17 17 report = Document() 18 table = "" 18 table = None 19 msbuild = "msbuild" 20 19 21 20 22 def check_requirements(): 21 23 if not exists("lib\\x86\\Jypeli4.dll"): 22 24 raise Exception("lib\\x86\\Jypeli4.dll expected") 25 return_code = call(msbuild + "/?", shell=True) 26 if return_code != 0: 27 # etsitaan 28 foo = join(os.getenv("SystemRoot"), "Microsoft.NET\\Framework") 29 print "NO MSBUILD!" 23 30 24 31 … … 122 129 def main(): 123 130 try: 131 check_requirements() 124 132 initialize_report() 125 check_requirements()126 133 create_output_directory() 127 134 build_games()
Note: See TracChangeset
for help on using the changeset viewer.