Removed -lQtTest from Makefile.am (configure adds it to QT_LDADD).

Changed include of QtTest in testqgsapplication.cpp to proper form.


git-svn-id: http://svn.osgeo.org/qgis/trunk@5214 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
gsherman 2006-04-07 23:51:07 +00:00
parent acf4803bac
commit 10a5bea93b
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ bin_PROGRAMS = testqgsapplication
testqgsapplication_MOC = testqgsapplication.moc.cpp
testqgsapplication_SOURCES = testqgsapplication.cpp
testqgsapplication_LDADD = $(QT_LDADD) $(PG_LIB) $(GDAL_LDADD) -lproj ../../../src/core/libqgis_core.la ../../../src/gui/libqgis_gui.la -lQtTest
testqgsapplication_LDADD = $(QT_LDADD) $(PG_LIB) $(GDAL_LDADD) -lproj ../../../src/core/libqgis_core.la ../../../src/gui/libqgis_gui.la
testqgsapplication_CXXFLAGS = $(CXXFLAGS) $(EXTRA_CXXFLAGS) $(GDAL_CFLAGS) $(QT_CXXFLAGS) $(PG_INC) -I../../../src/core
BUILT_SOURCES = $(testqgsapplication_MOC)

View File

@ -1,4 +1,4 @@
#include <QtTest/QtTest>
#include <QtTest>
#include <qgsapplication.h>
#include "testqgsapplication.h"
#include <QObject>