- Timestamp:
- Oct 17, 2009, 4:28:09 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.cmd
r246 r248 1720 1720 1721 1721 /* generate the root makefile */ 1722 if (\FileExists(G.OutPath"\Makefile")) then do 1723 1724 address "cmd" G.OutPath"\bin\qmake" G.RelPath"\projects.pro -o" G.OutPath"\Makefile" 1725 make_rc = rc 1726 /* exit on failure */ 1727 if (make_rc \= 0) then 1728 call Done 2 1729 1730 /* generate the immediate child makefiles, otherwise 'make release|debug' 1731 * from the root directory will not work (because there are no real 1732 * Makefile targets and make will complain Makefiles are missing which 1733 * I consider as a qmake bug) */ 1734 address "cmd" G.MAKE "-f" G.OutPath"\Makefile" "qmake" 1735 make_rc = rc 1736 /* exit on failure */ 1737 if (make_rc \= 0) then 1738 call Done 2 1739 end 1722 address "cmd" G.OutPath"\bin\qmake" G.RelPath"\projects.pro -o" G.OutPath"\Makefile" 1723 make_rc = rc 1724 /* exit on failure */ 1725 if (make_rc \= 0) then 1726 call Done 2 1727 1728 /* generate the immediate child makefiles, otherwise 'make release|debug' 1729 * from the root directory will not work (because there are no real 1730 * Makefile targets and make will complain Makefiles are missing which 1731 * I consider as a qmake bug) */ 1732 address "cmd" G.MAKE "-f" G.OutPath"\Makefile" "qmake" 1733 make_rc = rc 1734 /* exit on failure */ 1735 if (make_rc \= 0) then 1736 call Done 2 1740 1737 1741 1738 /*--------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.