game-music-emu: Merged in fix-cmake-min-warning (pull request #53)

From 1d238afd3cfb5cfb94a4c1fbe10ce8d65d30f787 Mon Sep 17 00:00:00 2001
From: Wohlstand <[EMAIL REDACTED]>
Date: Fri, 6 Oct 2023 00:30:43 +0300
Subject: [PATCH] Fixed the minimum version CMake warning And also, put the
 mimimum version definition at the first line, otherwise, another warning gets
 popped up

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

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2615ad5..214a832 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,6 +1,6 @@
 # CMake project definition file.
+cmake_minimum_required(VERSION 3.0...3.5 FATAL_ERROR)
 project(libgme)
-cmake_minimum_required(VERSION 3.0 FATAL_ERROR)
 
 include (TestBigEndian)
 include (CheckCXXCompilerFlag)