Generate drawing rules code.

This commit is contained in:
vng 2011-11-04 16:37:10 +03:00 committed by Alex Zolotarev
parent c0afb58dc9
commit 1af9382e77
4 changed files with 3875 additions and 3 deletions

2217
indexer/drules_struct.pb.cc Normal file

File diff suppressed because it is too large Load diff

1649
indexer/drules_struct.pb.h Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,8 +1,9 @@
option optimize_for = LITE_RUNTIME;
message ColorProto
{
required int32 color = 1;
optional int32 opacity = 2; // opacity : 0 - completly invisible, 255 - completly visible
optional int32 opacity = 2; // opacity : 0 - completely invisible, 255 - completely visible
}
message DashDotProto

View file

@ -3,9 +3,10 @@
TARGET = indexer
TEMPLATE = lib
CONFIG += staticlib
INCLUDEPATH += ../3party/protobuf/src
ROOT_DIR = ..
DEPENDENCIES = geometry coding base expat
DEPENDENCIES = geometry coding base expat protobuf
include($$ROOT_DIR/common.pri)
@ -38,7 +39,8 @@ SOURCES += \
mwm_set.cpp \
index.cpp \
categories_holder.cpp \
search_string_utils.cpp
search_string_utils.cpp \
drules_struct.pb.cc \
HEADERS += \
feature.hpp \
@ -85,3 +87,6 @@ HEADERS += \
search_delimiters.hpp \
mwm_set.hpp \
categories_holder.hpp \
drules_struct.pb.h \
OTHER_FILES += drules_struct.proto