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 <deathbaba@gmail.com>2012-01-11 21:02:37 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:31:44 +0300
commitda1adedddfc491f05563ce03d9fcaba46473ccbc (patch)
tree3d8e4a50df10c72ba8eb10e5de5283371f0eb5c5 /std/target_os.hpp
parent344cece82b84c2a6227a262d6762b5a83d3a233d (diff)
Enabled debug stl for android and iphone
Diffstat (limited to 'std/target_os.hpp')
-rw-r--r--std/target_os.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/std/target_os.hpp b/std/target_os.hpp
index cef471da2e..f6cfac2b82 100644
--- a/std/target_os.hpp
+++ b/std/target_os.hpp
@@ -4,6 +4,7 @@
#define OMIM_OS_ANDROID
#define OMIM_OS_NAME "android"
#define OMIM_OS_MOBILE
+ #define OMIM_HAS_DEBUG_STL 1
#elif defined(_BADA_SIMULATOR) || defined(_BADA_DEVICE)
#define OMIM_OS_BADA
@@ -27,6 +28,7 @@
#define OMIM_OS_NAME "mac"
#define OMIM_OS_DESKTOP
#endif
+ #define OMIM_HAS_DEBUG_STL 1
#elif defined(_WIN32)
#define OMIM_OS_WINDOWS
@@ -43,4 +45,6 @@
#define OMIM_OS_LINUX
#define OMIM_OS_NAME "linux"
#define OMIM_OS_DESKTOP
+ #define OMIM_HAS_DEBUG_STL 1
+
#endif