[omim] android support

This commit is contained in:
Mikhail Gorbushin 2019-11-29 00:02:49 +03:00 committed by mpimenov
parent 3c66ad1a51
commit 63b7da7448
3 changed files with 5 additions and 3 deletions

View file

@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.2)
cmake_minimum_required(VERSION 3.8)
project(omim C CXX)

View file

@ -207,7 +207,8 @@ android {
if (project.hasProperty('pch')) pchFlag = 'ON'
cmake {
cppFlags '-fexceptions', '-frtti'
version "3.8.0+"
cppFlags '-fexceptions', '-frtti', '-std=c++17'
cFlags '-ffunction-sections', '-fdata-sections',
'-Wno-extern-c-compat'
arguments '-DANDROID_TOOLCHAIN=clang', '-DANDROID_STL=c++_static',
@ -470,6 +471,7 @@ android {
externalNativeBuild {
cmake {
version "3.8.0+"
buildStagingDirectory "./nativeOutputs"
path "../CMakeLists.txt"
}

View file

@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.2)
cmake_minimum_required(VERSION 3.8)
project(mapswithme C CXX)