From a2b776ed1e5ae453b77f11aa329b46dbe15b78f8 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Fri, 8 May 2020 16:31:46 +0200 Subject: [PATCH] Remove redundant def --- client/android/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/android/CMakeLists.txt b/client/android/CMakeLists.txt index 318909e72..2a313532e 100644 --- a/client/android/CMakeLists.txt +++ b/client/android/CMakeLists.txt @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.4.1) # NDK version for SDK 19 doesn't implement the whole C++11 standard in the STL. # see: https://stackoverflow.com/questions/44736135/ndk-clang-error-undefined-reference-to-localeconv # so we need add def getlocaledecpoint()='.' -add_definitions(-DANDROID -D"getlocaledecpoint\(\)='.'" -DZ_SOLO) +add_definitions(-DANDROID -D"getlocaledecpoint\(\)='.'") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99 -O3 -fvisibility=hidden -w")