From 0148491b336985197a75e54c0488e4774eb6437f Mon Sep 17 00:00:00 2001 From: Horacio Valdivieso Date: Thu, 18 Dec 2025 23:05:44 -0500 Subject: [PATCH 1/2] updated .gitignore to not track visual studio solution files --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 478ede43..fa98f482 100644 --- a/.gitignore +++ b/.gitignore @@ -119,6 +119,11 @@ _deps # External projects *-prefix/ +### Visual Studio Generated Files ### +*.vcxproj +*.vcxproj.filters +*.sln + ### SCons ### # for projects that use SCons for building: http://http://www.scons.org/ .sconsign.dblite From efa578437b87d2e52a14b51f1a0862783b9b0fad Mon Sep 17 00:00:00 2001 From: Horacio Valdivieso Date: Fri, 19 Dec 2025 09:51:35 -0500 Subject: [PATCH 2/2] Moved cmake minimum required definition after project definition This change fix this warning message: CMake Warning (dev) at CMakeLists.txt:1 (project): cmake_minimum_required() should be called prior to this top-level project() call. Please see the cmake-commands(7) manual for usage documentation of both commands.| --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1a571824..cbfd494e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ -project(GodotFmod) cmake_minimum_required(VERSION 3.6) +project(GodotFmod) set(GODOT_GDEXTENSION_DIR godot-cpp/gdextension/ CACHE STRING "Path to GDExtension interface header directory") set(CPP_BINDINGS_PATH godot-cpp/ CACHE STRING "Path to C++ bindings")