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 for windows build. Composer and projectionselector libs now b…
…uild. git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5978 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
timlinux
committed
Oct 20, 2006
1 parent
c00ea21
commit 83155cf
Showing
7 changed files
with
112 additions
and
17 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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
################################################################# | ||
# | ||
# 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) | ||
include(../ui/ui.pro) | ||
TEMPLATE=lib | ||
TARGET=qgis_composer | ||
#suffix debug to target if applicable | ||
CONFIG(debug, debug|release){ | ||
TARGET = $$member(TARGET, 0)-debug | ||
} | ||
LIBS += $${GDALLIBADD} | ||
LIBS += $${QGISCORELIBADD} | ||
message("QGIS Core Lib: $${QGISCORELIBADD}") | ||
message("LIBS: $${LIBS}") | ||
DESTDIR=$${QGISLIBDIR} | ||
#leave the next line here - it clears the Qt defines | ||
QT = | ||
QT += qt3support svg core gui | ||
message("Building libs into $${DESTDIR}") | ||
|
||
libqgis_composerHEADERS = qgscomposer.h \ | ||
qgscomposeritem.h \ | ||
qgscomposerlabel.h \ | ||
qgscomposerpicture.h \ | ||
qgscomposermap.h \ | ||
qgscomposerscalebar.h \ | ||
qgscomposervectorlegend.h \ | ||
qgscomposerview.h \ | ||
qgscomposition.h | ||
|
||
libqgis_composer_la_SOURCES = qgscomposer.cpp \ | ||
qgscomposeritem.cpp \ | ||
qgscomposerlabel.cpp \ | ||
qgscomposerpicture.cpp \ | ||
qgscomposermap.cpp \ | ||
qgscomposerscalebar.cpp \ | ||
qgscomposervectorlegend.cpp \ | ||
qgscomposerview.cpp \ | ||
qgscomposition.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
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 |
---|---|---|
@@ -12,5 +12,5 @@ | ||
|
||
TEMPLATE=subdirs | ||
|
||
SUBDIRS=core | ||
SUBDIRS=core widgets gui | ||
|
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,14 +1,32 @@ | ||
###################################################################### | ||
# Automatically generated by qmake (1.06c) Sat Apr 30 15:44:59 2005 | ||
###################################################################### | ||
################################################################# | ||
# | ||
# 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. | ||
# | ||
################################################################# | ||
|
||
TEMPLATE = lib | ||
INCLUDEPATH += . \ | ||
..\..\src \ | ||
$(GDAL)\include \ | ||
$(SQLITE3) | ||
include(../../../settings.pro) | ||
TEMPLATE=lib | ||
TARGET=qgis_projectionselector | ||
#suffix debug to target if applicable | ||
CONFIG(debug, debug|release){ | ||
TARGET = $$member(TARGET, 0)-debug | ||
} | ||
LIBS += $${GDALLIBADD} | ||
LIBS += $${SQLITELIBADD} | ||
LIBS += $${PROJLIBADD} | ||
LIBS += $${QGISCORELIBADD} | ||
message("QGIS Core Lib: $${QGISCORELIBADD}") | ||
message("LIBS: $${LIBS}") | ||
DESTDIR=$${QGISLIBDIR} | ||
QT += core gui qt3support | ||
QT = $$unique(QT) | ||
|
||
# Input | ||
HEADERS += qgsprojectionselector.h qgsprojectionselectorbase.ui.h | ||
INTERFACES += qgsprojectionselectorbase.ui | ||
FORMS += qgsprojectionselectorbase.ui | ||
HEADERS += qgsprojectionselector.h | ||
SOURCES += qgsprojectionselector.cpp |