Skip to content

Commit

Permalink
Build the geoprocessing plugin under windows / qmake
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@6226 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Dec 10, 2006
1 parent c05d2c3 commit 0d69ae2
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
51 changes: 51 additions & 0 deletions src/plugins/geoprocessing/geoprocessing.pro
@@ -0,0 +1,51 @@
#################################################################
#
# QMAKE Project File for Quantum GIS
#
# Tim Sutton 2006
#
# NOTE: Do not place any hard coded external paths in this file
# all libs and includes should be specified in settings.pro
# in the top level qgis directory.
#
#################################################################

#
# This file builds the spit plugin
#

include(../../../settings.pro)
TARGET=geoprocessingplugin
TEMPLATE = lib
#suffix debug to target if applicable
CONFIG(debug, debug|release){
TARGET = $$member(TARGET, 0)-debug
}

# This is a hack (thanks freddy!) because many plugins use the
# same class names and file names we need to force the compiler
# to create separate object files for them.
MYDIRNAME=spit
MOC_DIR = $${OBJDIR}/moc/plugins/$${MYDIRNAME}
UI_DIR = $${OBJDIR}/ui/plugins/$${MYDIRNAME}
win32:OBJECTS_DIR = $${OBJDIR}/o/win32/plugins/$${MYDIRNAME}
INCLUDEPATH += $${OBJDIR}/ui

LIBS += $${QGISCORELIBADD}
LIBS += $${QGISGUILIBADD}
LIBS += $${POSTGRESLIBADD}


DESTDIR=$${QGISPLUGINDIR}
QT += qt3support svg core gui xml network

message("Building libs into $${DESTDIR}")


HEADERS += qgsdlgpgbuffer.h \
qgspggeoprocessing.h

INTERFACES += qgsdlgpgbufferbase.ui

SOURCES += qgsdlgpgbuffer.cpp \
qgspggeoprocessing.cpp
1 change: 1 addition & 0 deletions src/plugins/plugins.pro
Expand Up @@ -14,5 +14,6 @@ SUBDIRS = delimited_text \
grass \
copyright_label \
georeferencer \
geoprocessing \
spit
# gps_importer \

0 comments on commit 0d69ae2

Please sign in to comment.