Added missing makefile.am

git-svn-id: http://svn.osgeo.org/qgis/trunk@5143 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
timlinux 2006-04-03 16:10:44 +00:00
parent 70c9c4338d
commit 745e2f2229
2 changed files with 23 additions and 1 deletions

View File

@ -0,0 +1,22 @@
# Copyright (C) 2003 Gary Sherman <sherman at mrcc.com>
#
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without
# modifications, as long as this notice is preserved.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
bin_PROGRAMS = testqgsapplication
%.moc.cpp: %.cpp
$(MOC) -o $@ $<
testqgsapplication_MOC = testqgsapplication.moc.cpp
testqgsapplication_SOURCES = $(testqgsapplication_MOC) testqgsapplication.h testqgsapplication.cpp
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

View File

@ -1,6 +1,6 @@
#ifndef TESTQGSAPPLICATION_H
#define TESTQGSAPPLICATION_H
#include <QtTest>
#include <QtTest/QtTest>
#include <QObject>
class TestQgsApplication: public QObject