Skip to content

Commit 69b3964

Browse files
author
timlinux
committedSep 7, 2006
Qmake project file for quick and dirty testing & building
Removed redundant include in cpp git-svn-id: http://svn.osgeo.org/qgis/trunk@5767 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 1dcd3a5 commit 69b3964

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed
 
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#################################################################
2+
#
3+
# QMAKE Project File for mapserver export Gui
4+
#
5+
# Tim Sutton 2006
6+
#
7+
#################################################################
8+
TEMPLATE = app
9+
TARGET = ms_export
10+
CONFIG += debug_and_release
11+
CONFIG += build_all
12+
CONFIG(debug, debug|release){
13+
TARGET = $$member(TARGET, 0)-debug
14+
}
15+
LIBS += -lpython -L/usr/lib
16+
mac:INCLUDEPATH += /System/Library/Frameworks/Python.framework/Versions/2.3/include/python2.3/
17+
linux-g++:INCLUDEPATH += /usr/include/python
18+
QT += gui
19+
QT += qt3support
20+
21+
22+
FORMS += qgsmapserverexportbase.ui
23+
24+
HEADERS += qgsmapserverexport.h
25+
26+
SOURCES += main.cpp \
27+
msexport_wrap.cxx \
28+
qgsmapserverexport.cpp

‎tools/mapserver_export/qgsmapserverexport.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,16 @@ email : sherman at mrcc.com
2828
#include <qstring.h>
2929
#include <QWidget>
3030
#include "qgsmapserverexport.h"
31-
#include "ui_qgsmapserverexportbase.h"
3231

3332

3433
// constructor
3534
QgsMapserverExport::QgsMapserverExport(QWidget * parent, Qt::WFlags fl)
3635
: QDialog(parent, fl)
3736
{
37+
setupUi(this);
3838
// initialize python
3939
initPy();
4040

41-
setupUi(this);
4241

4342
}
4443

0 commit comments

Comments
 (0)
Please sign in to comment.