Name | Modified | Size | Downloads / Week |
---|---|---|---|
readme.txt | 2012-06-24 | 887 Bytes | |
QtFigs4.tar.gz | 2012-06-24 | 1.1 MB | |
Lottery.tar.gz | 2012-06-24 | 822.2 kB | |
ECalc1.tar.gz | 2012-06-24 | 1.1 MB | |
Totals: 4 Items | 3.0 MB | 0 |
This works on my Fedora 17 with latest yum update qmake-qt4 -project # presume that /home/me/QtFigs4 is the current subdirectory # use TARGET = whatever to set target # add QT += xml to the QtFigs4.pro file as shown below qmake-qt4 -o Makefile QtFigs4.pro make # to run: QtFigs4 shapes.xml [root@Precision-380 profile.d]# uname -a Linux Precision-380 3.4.3-1.fc17.x86_64 #1 SMP Mon Jun 18 19:53:17 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux # here is Qt4Figs.pro #####################################################################e # Automatically generated by qmake (2.00a) Thu Mar 16 00:54:18 2006 ###################################################################### TEMPLATE = app TARGET += DEPENDPATH += . INCLUDEPATH += . # the following line was added QT += xml # Input HEADERS += drawview.h shape.h structureparser.h SOURCES += drawview.cpp qtfigs.cpp structureparser.cpp