| * qt4.py: qt4 support is not yet official, and I have to patch this file
This commit was way premature!
I hate it already, without even having had a look at it.
You mean without qt4 support? You know what is qt support? With them,
I need only to write
qt4 = qtenv.StaticLibrary(
target = '$LOCALLIBPATH/qt4',
LIBS = qtenv['QT_LIB'],
source = source_files + moc_files
)
All the moc, uic business are done automatically. Read your
Makefile.am and I guess you can compare.
The only serious patch I need to do with qt4.py is actually related to
the .C extension we use. It is not considered as a C++ extension
there. Also, under windows, since windows is not case sensitive, the
.C files are considered as .c and gcc is used. I have to solve that
problem for windows.
Bo