Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Qmake project file for quick and dirty testing & building
Removed redundant include in cpp


git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5767 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Sep 7, 2006
1 parent 883c073 commit e33003f
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
28 changes: 28 additions & 0 deletions tools/mapserver_export/mapserver_export.pro
@@ -0,0 +1,28 @@
#################################################################
#
# 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
}
LIBS += -lpython -L/usr/lib
mac:INCLUDEPATH += /System/Library/Frameworks/Python.framework/Versions/2.3/include/python2.3/
linux-g++:INCLUDEPATH += /usr/include/python
QT += gui
QT += qt3support


FORMS += qgsmapserverexportbase.ui

HEADERS += qgsmapserverexport.h

SOURCES += main.cpp \
msexport_wrap.cxx \
qgsmapserverexport.cpp
3 changes: 1 addition & 2 deletions tools/mapserver_export/qgsmapserverexport.cpp
Expand Up @@ -28,17 +28,16 @@ email : sherman at mrcc.com
#include <qstring.h>
#include <QWidget>
#include "qgsmapserverexport.h"
#include "ui_qgsmapserverexportbase.h"


// constructor
QgsMapserverExport::QgsMapserverExport(QWidget * parent, Qt::WFlags fl)
: QDialog(parent, fl)
{
setupUi(this);
// initialize python
initPy();

setupUi(this);

}

Expand Down

0 comments on commit e33003f

Please sign in to comment.