game-music-emu: Fixed the minimum version CMake warning (c9545)

From c9545500f172d4f7c09d303974e54d5f15455b83 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 7bb4b20..b924655 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)