Changeset 1087


Ignore:
Timestamp:
Sep 15, 2011, 12:17:51 AM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

configure.cmd: Generate qconfig.h in include in case if syncqt is not called.

This affects e.g. non-shadow builds.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.cmd

    r1069 r1087  
    713713        end
    714714
     715        /* sometimes syncqt is not called but we still need qconfig.h in the
     716         * include dir */
     717        list.1 = G.OutPath"\include\QtCore\qconfig.h"
     718        list.2 = G.OutPath"\include\Qt\qconfig.h"
     719        list.0 = 2
     720        do i = 1 to list.0
     721            if (\FileExists(list.i)) then do
     722                call charout list.i, '#include "../../src/corelib/global/qconfig.h"'G.EOL
     723                call charout list.i
     724            end
     725        end
     726
    715727        if (G.OPT_FAST == "auto") then do
    716728           if (G.CFG_DEV == "yes") then G.OPT_FAST = "yes"
Note: See TracChangeset for help on using the changeset viewer.