Skip to content

File tree

2 files changed

+52
-0
lines changed

2 files changed

+52
-0
lines changed
 
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
#################################################################
2+
#
3+
# QMAKE Project File for Quantum GIS
4+
#
5+
# Tim Sutton 2006
6+
#
7+
# NOTE: Do not place any hard coded external paths in this file
8+
# all libs and includes should be specified in settings.pro
9+
# in the top level qgis directory.
10+
#
11+
#################################################################
12+
13+
#
14+
# This file builds the spit plugin
15+
#
16+
17+
include(../../../settings.pro)
18+
TARGET=geoprocessingplugin
19+
TEMPLATE = lib
20+
#suffix debug to target if applicable
21+
CONFIG(debug, debug|release){
22+
TARGET = $$member(TARGET, 0)-debug
23+
}
24+
25+
# This is a hack (thanks freddy!) because many plugins use the
26+
# same class names and file names we need to force the compiler
27+
# to create separate object files for them.
28+
MYDIRNAME=spit
29+
MOC_DIR = $${OBJDIR}/moc/plugins/$${MYDIRNAME}
30+
UI_DIR = $${OBJDIR}/ui/plugins/$${MYDIRNAME}
31+
win32:OBJECTS_DIR = $${OBJDIR}/o/win32/plugins/$${MYDIRNAME}
32+
INCLUDEPATH += $${OBJDIR}/ui
33+
34+
LIBS += $${QGISCORELIBADD}
35+
LIBS += $${QGISGUILIBADD}
36+
LIBS += $${POSTGRESLIBADD}
37+
38+
39+
DESTDIR=$${QGISPLUGINDIR}
40+
QT += qt3support svg core gui xml network
41+
42+
message("Building libs into $${DESTDIR}")
43+
44+
45+
HEADERS += qgsdlgpgbuffer.h \
46+
qgspggeoprocessing.h
47+
48+
INTERFACES += qgsdlgpgbufferbase.ui
49+
50+
SOURCES += qgsdlgpgbuffer.cpp \
51+
qgspggeoprocessing.cpp

‎src/plugins/plugins.pro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ SUBDIRS = delimited_text \
1414
grass \
1515
copyright_label \
1616
georeferencer \
17+
geoprocessing \
1718
spit
1819
# gps_importer \

0 commit comments

Comments
 (0)
Please sign in to comment.