Is there any option to avoid to generate example projects for configure?
-
not directly, but indirectly:
call configure with the needed options. The one I took are:
- configure.exe -debug-and-release -opensource -confirm-license -platform win32-g++ -no-exceptions -dont-process -no-qt3support -webkit -qt-sql-sqlite -qt-zlib -qt-libpng -qt-libjpeg
** the important one is: * -dont-process* - Now you have to build the makefiles (but only for the libraries, not for the tools):
** bin\qmake.exe projects.pro QT_BUILD_PARTS=“libs” - Now you can build Qt:
** mingw32-make.exe
- configure.exe -debug-and-release -opensource -confirm-license -platform win32-g++ -no-exceptions -dont-process -no-qt3support -webkit -qt-sql-sqlite -qt-zlib -qt-libpng -qt-libjpeg
-
Hi Gerolf,
I'm using shadow build to create my own libraries.
For step 2, shadow build didn't copy a projects.pro to that shadow directory.
I also tried running qmake from current shadow dir to build projects.pro which was located at source dir, nothing happened, even no error. -