game-music-emu: cmake: avoid warning about CMake<3.5 being deprecated

From 56a7f868b85d874a07be4b68cc97992a13089bd6 Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Fri, 25 Aug 2023 02:34:10 +0200
Subject: [PATCH] cmake: avoid warning about CMake<3.5 being deprecated

---
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9710529..55c6ca2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.0)
+cmake_minimum_required(VERSION 3.0...3.5)
 # CMake project definition file.
 project(libgme)