Changeset 816


Ignore:
Timestamp:
Nov 4, 2010, 2:12:39 AM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

configure.cmd: Added support for MAKE_JOBS environment variable that represents a number of make jobs to run in parallel. This only affects the bootstrap build of qmake.exe (the number of jobs for the Qt build is specified on the make command line when starting a build).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.cmd

    r815 r816  
    537537        end
    538538
     539        G.MAKE_JOBS = GetEnv("MAKE_JOBS")
     540        if (G.MAKE_JOBS \= "") then do
     541            G.MAKE_JOBS = "-j"G.MAKE_JOBS
     542        end
    539543    end
    540544
     
    947951    call directory G.RelPath"\qmake"
    948952
    949     address "cmd" G.MAKE
     953    address "cmd" G.MAKE G.MAKE_JOBS
    950954    make_rc = rc
    951955
Note: See TracChangeset for help on using the changeset viewer.