Skip to content

Commit ace8b3f

Browse files
author
timlinux
committedOct 21, 2006
Updates for win build libgui is almost building - there are a few vtable errors left. In order to get past cyclical dependency issues I am building raster, gui and composer files into a single lib.
git-svn-id: http://svn.osgeo.org/qgis/trunk@5983 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 2eeff8b commit ace8b3f

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed
 

‎settings.pro

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,6 @@ macx:LIBS+=-L/usr/local/lib
160160
#
161161
#################################################################
162162

163-
win32:INCLUDEPATH += c:/msys/local/include
164163
INCLUDEPATH +=$${WORKDIR}/src \
165164
$${WORKDIR}/src/core \
166165
$${WORKDIR}/src/gui \
@@ -180,10 +179,8 @@ INCLUDEPATH +=$${WORKDIR}/src \
180179

181180
win32{
182181
message(Installing for windows!)
183-
INCLUDEPATH += .
184-
INCLUDEPATH += C:/MinGW/include
185-
INCLUDEPATH += C:/cygwin/usr/local/src/om/src
186-
INCLUDEPATH += c:/dev/cpp/om/src
182+
#add any win specific rules here
183+
INCLUDEPATH += c:/msys/local/include
187184
}
188185

189186

@@ -194,7 +191,6 @@ win32{
194191
#################################################################
195192

196193
macx{
197-
INCLUDEPATH += /usr/local/include/openmodeller
198194
#fixme should not need the next line
199195
#INCLUDEPATH += /Users/timsutton/dev/cpp/om/src
200196
FRAMEWORKSDIR=$${DESTDIR}/$${QGIS_APP_NAME}.app/Contents/Frameworks

‎src/composer/composer.pro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ message("LIBS: $${LIBS}")
2929
DESTDIR=$${QGISLIBDIR}
3030
#leave the next line here - it clears the Qt defines
3131
QT =
32-
QT += qt3support svg core gui
32+
QT += qt3support svg core gui xml
3333
message("Building libs into $${DESTDIR}")
3434

35-
libqgis_composerHEADERS = qgscomposer.h \
35+
HEADERS = qgscomposer.h \
3636
qgscomposeritem.h \
3737
qgscomposerlabel.h \
3838
qgscomposerpicture.h \
@@ -42,7 +42,7 @@ libqgis_composerHEADERS = qgscomposer.h \
4242
qgscomposerview.h \
4343
qgscomposition.h
4444

45-
libqgis_composer_la_SOURCES = qgscomposer.cpp \
45+
SOURCES = qgscomposer.cpp \
4646
qgscomposeritem.cpp \
4747
qgscomposerlabel.cpp \
4848
qgscomposerpicture.cpp \

0 commit comments

Comments
 (0)
Please sign in to comment.