From c24df1547a2f5e29aed5626c272f9e76bbe63211 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Fri, 8 May 2020 16:36:35 +0200 Subject: [PATCH] android cmake: remove c99 restriction --- 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 2a313532e..5b417ff63 100644 --- a/client/android/CMakeLists.txt +++ b/client/android/CMakeLists.txt @@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.4.1) # so we need add def getlocaledecpoint()='.' add_definitions(-DANDROID -D"getlocaledecpoint\(\)='.'") -set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99 -O3 -fvisibility=hidden -w") +set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O3 -fvisibility=hidden -w") # Root path into client set(PM3_ROOT ../../)