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
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
Showing
2 changed files
with
29 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
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