Skip to content

Commit

Permalink
enable parallel builds
Browse files Browse the repository at this point in the history
  • Loading branch information
bcarrier committed Jun 12, 2018
1 parent 8b77001 commit 95f1372
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions win32/updateAndBuildAll.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ def buildDependentLibs(libHome, wPlatform, targetDll, project):
elif wPlatform == 32:
vs.append("/p:platform=Win32")
vs.append("/clp:ErrorsOnly")
vs.append("/m")

outputFile = os.path.join(LOG_PATH, targetDll + "Output.txt")
VSout = open(outputFile, 'w')
Expand Down Expand Up @@ -237,6 +238,7 @@ def buildTSK(wPlatform, target):
vs.append("/clp:ErrorsOnly")
vs.append("/t:clean")
vs.append("/t:build")
vs.append("/m")

outputFile = os.path.join(LOG_PATH, "TSKOutput.txt")
VSout = open(outputFile, 'w')
Expand Down

0 comments on commit 95f1372

Please sign in to comment.