From 486540fa90e92d6f4717a883c427677d2093bbaa Mon Sep 17 00:00:00 2001 From: Sergey Bugaev Date: Fri, 15 May 2020 10:52:37 +0300 Subject: [PATCH] Build: Allow using CMake 3.16 Because apparently that's what a lot of people have, and they report it works fine. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e6694db443..d5a4c11551 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ -cmake_minimum_required (VERSION 3.17) -project (SerenityOS C CXX ASM) +cmake_minimum_required(VERSION 3.16) +project(SerenityOS C CXX ASM) enable_testing()