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:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2016-08-10 01:33:12 +0300
committerIlya Zverev <ilya@zverev.info>2017-07-04 11:26:12 +0300
commitcfc5c6a7122c365a412162dd6804e39befd98d9e (patch)
treebe58193d7553c540a0f919f0f4646372a08d1d93 /indexer/map_style_reader.cpp
parent497c18a27dfd5acab6ee959f493c23e0780e242e (diff)
[designer tool] Added button for geom index regeneration and config in prefs
Diffstat (limited to 'indexer/map_style_reader.cpp')
-rw-r--r--indexer/map_style_reader.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/indexer/map_style_reader.cpp b/indexer/map_style_reader.cpp
index c4a821bd6f..df9db9fb2a 100644
--- a/indexer/map_style_reader.cpp
+++ b/indexer/map_style_reader.cpp
@@ -38,10 +38,14 @@ std::string GetStyleRulesSuffix(MapStyle mapStyle)
}
LOG(LWARNING, ("Unknown map style", mapStyle));
return kSuffixClear;
+#endif // BUILD_DESIGNER
}
std::string GetStyleResourcesSuffix(MapStyle mapStyle)
{
+#ifdef BUILD_DESIGNER
+ return string();
+#else
// We use the same resources for default and vehicle styles
// to avoid textures duplication and package size increasing.
switch (mapStyle)