Skip to content

Commit 745e2f2

Browse files
author
timlinux
committed
Added missing makefile.am
git-svn-id: http://svn.osgeo.org/qgis/trunk@5143 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 70c9c43 commit 745e2f2

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

tests/src/core/Makefile.am

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Copyright (C) 2003 Gary Sherman <sherman at mrcc.com>
2+
#
3+
# This file is free software; as a special exception the author gives
4+
# unlimited permission to copy and/or distribute it, with or without
5+
# modifications, as long as this notice is preserved.
6+
#
7+
# This program is distributed in the hope that it will be useful, but
8+
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
9+
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10+
11+
bin_PROGRAMS = testqgsapplication
12+
13+
14+
%.moc.cpp: %.cpp
15+
$(MOC) -o $@ $<
16+
17+
testqgsapplication_MOC = testqgsapplication.moc.cpp
18+
testqgsapplication_SOURCES = $(testqgsapplication_MOC) testqgsapplication.h testqgsapplication.cpp
19+
20+
testqgsapplication_LDADD = $(QT_LDADD) $(PG_LIB) $(GDAL_LDADD) -lproj ../../../src/core/libqgis_core.la ../../../src/gui/libqgis_gui.la
21+
testqgsapplication_CXXFLAGS = $(CXXFLAGS) $(EXTRA_CXXFLAGS) $(GDAL_CFLAGS) $(QT_CXXFLAGS) $(PG_INC) -I../../../src/core
22+

tests/src/core/testqgsapplication.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#ifndef TESTQGSAPPLICATION_H
22
#define TESTQGSAPPLICATION_H
3-
#include <QtTest>
3+
#include <QtTest/QtTest>
44
#include <QObject>
55

66
class TestQgsApplication: public QObject

0 commit comments

Comments
 (0)