From 00623caca269f07d4a2e1bb44b40ff4c31d8c73d Mon Sep 17 00:00:00 2001 From: "Marek S. Lukasiewicz" Date: Tue, 28 Jan 2025 14:32:26 +0100 Subject: [PATCH] Move godot-cpp to modules/ --- .gitmodules | 2 +- SConstruct | 2 +- godot-cpp => modules/godot-cpp | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename godot-cpp => modules/godot-cpp (100%) diff --git a/.gitmodules b/.gitmodules index 29bd727..dbedc99 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "godot-cpp"] - path = godot-cpp + path = modules/godot-cpp url = https://github.com/godotengine/godot-cpp.git diff --git a/SConstruct b/SConstruct index d526839..c6ca843 100644 --- a/SConstruct +++ b/SConstruct @@ -2,7 +2,7 @@ import os import sys -env = SConscript("godot-cpp/SConstruct") +env = SConscript("modules/godot-cpp/SConstruct") # For reference: # - CCFLAGS are compilation flags shared between C and C++ diff --git a/godot-cpp b/modules/godot-cpp similarity index 100% rename from godot-cpp rename to modules/godot-cpp