Make linking to qtsql conditional on OS

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7172 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
timlinux 2007-08-30 02:13:49 +00:00
parent d3e6a896bd
commit 81303efc94

View File

@ -10,9 +10,10 @@ python_path = src_path + '/python'
gdal_inc_dir = '@GDAL_INCLUDE_DIR@'
geos_inc_dir = '@GEOS_INCLUDE_DIR@'
qt_libs = ["QtCore","QtGui","QtNetwork","QtSql","QtSvg","QtXml"]
qt_libs = ["QtCore","QtGui","QtNetwork","QtSvg","QtXml"]
if sys.platform == 'darwin':
qt_libs.append("Qt3Support")
qt_libs.append("QtSql")
# create paths for temporary files if don't exist
if not os.path.isdir("./core"):