Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvng <viktor.govako@gmail.com>2011-02-05 02:31:46 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:11:38 +0300
commit3f869a3c193dc1136fc137a601eeecd5cf60bc1a (patch)
treef496b96785f8837cb275af912026a1ad3ae8b04a /indexer/indexer.pro
parent910964da8546fe678e0e42aa07275268dfbab2b5 (diff)
Feature geometry size optimization : make triangles Encoding\Decoding as binary tree.
Diffstat (limited to 'indexer/indexer.pro')
-rw-r--r--indexer/indexer.pro19
1 files changed, 6 insertions, 13 deletions
diff --git a/indexer/indexer.pro b/indexer/indexer.pro
index a9a929c265..d872803bc2 100644
--- a/indexer/indexer.pro
+++ b/indexer/indexer.pro
@@ -3,22 +3,12 @@
TARGET = indexer
TEMPLATE = lib
CONFIG += staticlib
-#!macx:DEFINES += COMPILED_FROM_DSP # needed for Expat
-#macx:DEFINES += HAVE_MEMMOVE # needed for Expat
ROOT_DIR = ..
DEPENDENCIES = geometry coding base expat
include($$ROOT_DIR/common.pri)
-!iphonesimulator-g++42 {
- !iphonedevice-g++42 {
- !bada-simulator {
- PRE_TARGETDEPS += $$BINARIES_PATH/$${LIB_PREFIX}sgitess$$LIB_EXT
- LIBS += -lsgitess
- }
- }
-}
SOURCES += \
osm2type.cpp \
@@ -39,7 +29,8 @@ SOURCES += \
data_header.cpp \
data_header_reader.cpp \
geometry_coding.cpp \
- geometry_serialization.cpp
+ geometry_serialization.cpp \
+ tesselator.cpp \
HEADERS += \
feature.hpp \
@@ -71,5 +62,7 @@ HEADERS += \
tree_structure.hpp \
feature_impl.hpp \
geometry_coding.hpp \
- geometry_serialization.hpp \
- point_to_int64.hpp
+ geometry_serialization.hpp \
+ point_to_int64.hpp \
+ tesselator.hpp \
+ tesselator_decl.hpp \