Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added missing makefile.am
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5143 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Apr 3, 2006
1 parent 766a446 commit 2e87442
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions tests/src/core/Makefile.am
@@ -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

2 changes: 1 addition & 1 deletion tests/src/core/testqgsapplication.h
@@ -1,6 +1,6 @@
#ifndef TESTQGSAPPLICATION_H
#define TESTQGSAPPLICATION_H
#include <QtTest>
#include <QtTest/QtTest>
#include <QObject>

class TestQgsApplication: public QObject
Expand Down

0 comments on commit 2e87442

Please sign in to comment.