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:
Diffstat (limited to 'std/target_os.hpp')
-rw-r--r--std/target_os.hpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/std/target_os.hpp b/std/target_os.hpp
index 8830773ade..0587a78f09 100644
--- a/std/target_os.hpp
+++ b/std/target_os.hpp
@@ -1,6 +1,10 @@
#pragma once
-#if defined(_BADA_SIMULATOR) || defined(_BADA_DEVICE)
+#if defined(ANDROID)
+ #define OMIM_OS_ANDROID
+ #define OMIM_OS_NAME "android"
+
+#elif defined(_BADA_SIMULATOR) || defined(_BADA_DEVICE)
#define OMIM_OS_BADA
#define OMIM_OS_NAME "bada"