Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
updates to build system:
- build delimited text plugins.pro - set the plugin install path in the settings file - initial work on grass pro but disabled for now until I get grass in msys git-svn-id: http://svn.osgeo.org/qgis/trunk@5996 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
timlinux
committed
Oct 22, 2006
1 parent
10c8bfb
commit a6daa00
Showing
5 changed files
with
42 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,39 @@ | ||
#################################################################### | ||
# Qmake project file for QGIS top-level plugins directory | ||
# This file is used by qmake to generate the Makefiles for building | ||
# QGIS plugins on Windows | ||
################################################################# | ||
# | ||
# delimited_text.pro,v 1.1 2004/06/23 04:15:54 gsherman Exp | ||
#################################################################### | ||
# 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 gui library - the app is built in a separate pro file | ||
# | ||
|
||
include(../../../settings.pro) | ||
TARGET=delimitedtextprovider | ||
TEMPLATE = lib | ||
INCLUDEPATH += . ..\..\src $(GDAL)\include | ||
LIBS += $(GDAL)\lib\gdal_i.lib | ||
DLLDESTDIR= ..\..\win_build\lib\qgis | ||
CONFIG += qt dll thread | ||
# Input | ||
#suffix debug to target if applicable | ||
CONFIG(debug, debug|release){ | ||
TARGET = $$member(TARGET, 0)-debug | ||
} | ||
LIBS += $${GDALLIBADD} | ||
#LIBS += $${GEOSLIBADD} | ||
#LIBS += $${PROJLIBADD} | ||
LIBS += $${QGISCORELIBADD} | ||
LIBS += $${QGISGUILIBADD} | ||
#LIBS += $${QGISPROJECTIONSELECTORLIBADD} | ||
DESTDIR=$${QGISPLUGINDIR} | ||
QT += qt3support svg core gui xml network | ||
message("Building libs into $${DESTDIR}") | ||
|
||
CONFIG += qt dll thread debug rtti | ||
HEADERS += qgsdelimitedtextplugin.h \ | ||
qgsdelimitedtextplugingui.h | ||
INTERFACES += qgsdelimitedtextpluginguibase.ui | ||
FORMS += qgsdelimitedtextpluginguibase.ui | ||
SOURCES += qgsdelimitedtextplugin.cpp \ | ||
qgsdelimitedtextplugingui.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -11,3 +11,4 @@ | ||
################################################################# | ||
TEMPLATE = subdirs | ||
SUBDIRS = ogr delimitedtext | ||
#grass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -12,5 +12,5 @@ | ||
|
||
TEMPLATE=subdirs | ||
|
||
SUBDIRS=core widgets gui providers | ||
SUBDIRS=core widgets gui providers plugins | ||
|