Skip to content

Commit b11a4c3

Browse files
author
gsherman
committed
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/qgis@5214 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent e99ae78 commit b11a4c3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/src/core/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bin_PROGRAMS = testqgsapplication
1717
testqgsapplication_MOC = testqgsapplication.moc.cpp
1818
testqgsapplication_SOURCES = testqgsapplication.cpp
1919

20-
testqgsapplication_LDADD = $(QT_LDADD) $(PG_LIB) $(GDAL_LDADD) -lproj ../../../src/core/libqgis_core.la ../../../src/gui/libqgis_gui.la -lQtTest
20+
testqgsapplication_LDADD = $(QT_LDADD) $(PG_LIB) $(GDAL_LDADD) -lproj ../../../src/core/libqgis_core.la ../../../src/gui/libqgis_gui.la
2121
testqgsapplication_CXXFLAGS = $(CXXFLAGS) $(EXTRA_CXXFLAGS) $(GDAL_CFLAGS) $(QT_CXXFLAGS) $(PG_INC) -I../../../src/core
2222

2323
BUILT_SOURCES = $(testqgsapplication_MOC)

tests/src/core/testqgsapplication.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include <QtTest/QtTest>
1+
#include <QtTest>
22
#include <qgsapplication.h>
33
#include "testqgsapplication.h"
44
#include <QObject>

0 commit comments

Comments
 (0)