mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Problems: Polygon outlines are not drawn. This was checked twice and no cause was found. Projections do not work in all circumstances Note that both the proj4 library and sqlite3 are now required. The build system has not been modified to test for these yet. Qt 3.3.x is required to build this source tree. Make sure to increment the EXTRA_VERSION in configure.in when committing changes. Make sure to update the Changelog with each commit git-svn-id: http://svn.osgeo.org/qgis/trunk@3112 c8812cc2-4d05-0410-92ff-de0c093fc19c
43 lines
926 B
Makefile
43 lines
926 B
Makefile
# Copyright (C) 2004 Jens Oberender <j.obi at troja.net>
|
|
#
|
|
# This file is free software; as a special exception the author gives
|
|
# unlimited permission to copy and/or distribute it, with or without
|
|
# modifications, as long as this notice is preserved.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
#
|
|
# $Id$
|
|
|
|
i18ndir = ${pkgdatadir}/i18n
|
|
|
|
nodist_i18n_DATA = \
|
|
qgis_de.qm \
|
|
qgis_fr.qm \
|
|
qgis_it.qm \
|
|
qgis_nl.qm \
|
|
qgis_pl_PL.qm \
|
|
qgis_pt_BR.qm \
|
|
qgis_ru.qm \
|
|
qgis_se.qm \
|
|
qgis_pl_PL.ts \
|
|
qgis_zh_CN.qm
|
|
|
|
i18n_SOURCES = \
|
|
qgis_de.ts \
|
|
qgis_fr.ts \
|
|
qgis_it.ts \
|
|
qgis_nl.ts \
|
|
qgis_pl_PL.ts \
|
|
qgis_pt_BR.ts \
|
|
qgis_ru.ts \
|
|
qgis_se.ts \
|
|
qgis_pl_PL.ts \
|
|
qgis_zh_CN.ts
|
|
|
|
%.qm: %.ts
|
|
cd ..; ./create_qm_files.sh
|
|
|
|
EXTRA_DIST = $(i18n_SOURCES)
|