From 8dc9f8b17315503d98ca2e19e5e364ed305497db Mon Sep 17 00:00:00 2001 From: Lucas Teixeira Date: Thu, 30 Jan 2020 16:52:38 +0100 Subject: [PATCH] Fix the cmake_minimum_required for the libktx I believe that 3.8 was a mistake. I am running 3.5, but all other CmakeFiles have 2.8 as minimum. --- external/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt index ddb84b70..14d3de18 100644 --- a/external/CMakeLists.txt +++ b/external/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.8) +cmake_minimum_required(VERSION 2.8) project(external LANGUAGES C CXX)