mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
Install python into PKGDATAPATH/python (Still needs further testing) git-svn-id: http://svn.osgeo.org/qgis/trunk@5794 c8812cc2-4d05-0410-92ff-de0c093fc19c
30 lines
803 B
Prolog
30 lines
803 B
Prolog
#################################################################
|
|
#
|
|
# QMAKE Project File for mapserver export Gui
|
|
#
|
|
# Tim Sutton 2006
|
|
#
|
|
#################################################################
|
|
TEMPLATE = app
|
|
TARGET = ms_export
|
|
CONFIG += debug_and_release
|
|
CONFIG += build_all
|
|
CONFIG(debug, debug|release){
|
|
TARGET = $$member(TARGET, 0)-debug
|
|
}
|
|
DEFINES += PKGDATAPATH='"$$system(pwd)"'
|
|
LIBS += -lpython -L/usr/lib
|
|
mac:INCLUDEPATH += /System/Library/Frameworks/Python.framework/Versions/2.3/include/python2.3/
|
|
linux-g++:INCLUDEPATH += /usr/include/python2.4/Python.h
|
|
QT += gui
|
|
QT += qt3support
|
|
|
|
|
|
FORMS += qgsmapserverexportbase.ui
|
|
|
|
HEADERS += qgsmapserverexport.h
|
|
|
|
SOURCES += main.cpp \
|
|
msexport_wrap.cxx \
|
|
qgsmapserverexport.cpp
|