From 6d0ff39bf7907ba78f92e8dae9da21ed306ff241 Mon Sep 17 00:00:00 2001 From: "F. Duncanh" Date: Thu, 19 Mar 2026 01:49:16 -0400 Subject: [PATCH] set cmake minimum version to 3.13 for all platforms --- CMakeLists.txt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a75fba9..f61868d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,4 @@ -if ( APPLE ) - cmake_minimum_required( VERSION 3.13 ) -else () - cmake_minimum_required( VERSION 3.10 ) -endif () +cmake_minimum_required( VERSION 3.13 ) project( uxplay )