From 3e8cd24174e5eeb42e3ce67d5ccf25066019e73d Mon Sep 17 00:00:00 2001 From: Rogiel Sulzbach Date: Mon, 5 Feb 2018 14:51:13 -0200 Subject: [PATCH] Lowers cmake_minimum_required to a lower value to fix a issue with NDK bundled CMake --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d75a46f..fc31791 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ # SUCH DAMAGE. # -cmake_minimum_required(VERSION 3.8) +cmake_minimum_required(VERSION 3.2) project(PacketBuffer) set(CMAKE_CXX_STANDARD 14)