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:
authorAlex Zolotarev <alex@maps.me>2015-11-07 11:45:25 +0300
committerAlex Zolotarev <alex@maps.me>2015-11-09 21:22:01 +0300
commit24d0703ef5b9e4c8832a2771af1c04ab75c22adf (patch)
tree4e49d05084515d5a8b5013fb057cc727a8e705b7
parent3005776ca125e882d0c7d10a4ed73cb5235ab898 (diff)
Added some TODOs.
-rw-r--r--geometry/geometry_tests/geometry_tests.pro2
-rw-r--r--map/benchmark_tool/benchmark_tool.pro1
-rw-r--r--omim.pro6
3 files changed, 8 insertions, 1 deletions
diff --git a/geometry/geometry_tests/geometry_tests.pro b/geometry/geometry_tests/geometry_tests.pro
index 2100e9625d..8ad7164d13 100644
--- a/geometry/geometry_tests/geometry_tests.pro
+++ b/geometry/geometry_tests/geometry_tests.pro
@@ -6,6 +6,8 @@ CONFIG -= app_bundle
TEMPLATE = app
ROOT_DIR = ../..
+# TODO(AlexZ): latlon.hpp introduces indexer dependency for tests,
+# because of indexer/mercator.hpp. Either move latlon to indexer, or mercator to geometry.
DEPENDENCIES = indexer geometry base
include($$ROOT_DIR/common.pri)
diff --git a/map/benchmark_tool/benchmark_tool.pro b/map/benchmark_tool/benchmark_tool.pro
index bffff69cda..e5d593e024 100644
--- a/map/benchmark_tool/benchmark_tool.pro
+++ b/map/benchmark_tool/benchmark_tool.pro
@@ -6,6 +6,7 @@ CONFIG -= app_bundle
TEMPLATE = app
ROOT_DIR = ../..
+
DEPENDENCIES = map indexer platform geometry coding base gflags protobuf tomcrypt
include($$ROOT_DIR/common.pri)
diff --git a/omim.pro b/omim.pro
index fb1459d282..7796da1954 100644
--- a/omim.pro
+++ b/omim.pro
@@ -5,7 +5,10 @@
# map_designer: enable designer-related flags
# no-tests: do not build tests for desktop
# drape: include drape libraries
-# iphone / tizen / android: build an app (implies no-tests)
+#
+# There are no supported options in CONFIG for mobile platforms.
+# Please use XCode or gradle/Android Studio.
+
lessThan(QT_MAJOR_VERSION, 5) {
error("You need Qt 5 to build this project. You have Qt $$QT_VERSION")
@@ -17,6 +20,7 @@ TEMPLATE = subdirs
HEADERS += defines.hpp
+# TODO(AlexZ): Why is it here? Drape should build on win32 too.
win32:CONFIG(drape) {
CONFIG -= drape
}