|
1 |
| -###################################################################### |
2 |
| -# Automatically generated by qmake (1.06c) Fri Jul 16 17:05:20 2004 |
3 |
| -###################################################################### |
| 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 | +################################################################# |
4 | 12 |
|
| 13 | +# |
| 14 | +# This file builds the gps importer plugin |
| 15 | +# |
| 16 | + |
| 17 | +include(../../../settings.pro) |
| 18 | +TARGET=gpsgplugin |
5 | 19 | TEMPLATE = lib
|
6 |
| -INCLUDEPATH += . ..\..\src \ |
7 |
| - $(GEOS)\include |
8 |
| -LIBS += ..\..\src\libqgis.lib \ |
9 |
| - $(GDAL)\lib\gdal_i.lib \ |
10 |
| - $(GEOS)\lib\geos.lib \ |
11 |
| - $(POSTGRESQL)\src\interfaces\libpq\Release\libpq.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=gps_importer |
| 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 | +INCLUDEPATH += . |
| 34 | + |
| 35 | +LIBS += $${QGISCORELIBADD} |
| 36 | +LIBS += $${QGISGUILIBADD} |
| 37 | +LIBS += $${POSTGRESLIBADD} |
| 38 | + |
| 39 | + |
| 40 | +DESTDIR=$${QGISPLUGINDIR} |
| 41 | +QT += qt3support svg core gui xml network |
| 42 | + |
| 43 | +message("Building libs into $${DESTDIR}") |
12 | 44 |
|
13 |
| -DLLDESTDIR= ..\..\win_build\lib\qgis |
14 |
| -CONFIG += qt dll thread rtti |
15 | 45 |
|
16 | 46 | # Input
|
| 47 | +FORMS += qgsgpspluginguibase.ui \ |
| 48 | + qgsgpsdevicedialogbase.ui |
17 | 49 |
|
18 | 50 | HEADERS += qgsgpsplugin.h \
|
| 51 | + qgsbabelformat.h \ |
| 52 | + qgsgpsdevice.h\ |
19 | 53 | qgsbabelformat.h \
|
20 | 54 | qgsgpsplugingui.h \
|
21 | 55 | qgsgpsdevicedialog.h
|
22 |
| -INTERFACES += qgsgpspluginguibase.ui \ |
23 |
| - qgsgpsdevicedialogbase.ui |
24 | 56 | SOURCES += qgsgpsplugin.cpp \
|
25 |
| - qgsbabelformat.h \ |
| 57 | + qgsgpsdevice.cpp \ |
26 | 58 | qgsbabelformat.cpp \
|
27 | 59 | qgsgpsplugingui.cpp \
|
28 | 60 | qgsgpsdevicedialog.cpp
|
|
0 commit comments