From e3c6b599bf6a11f176caef7a635cc8f4060068bd Mon Sep 17 00:00:00 2001 From: sdtv9507 Date: Thu, 1 Jul 2021 14:31:33 -0400 Subject: [PATCH] Add godot-cpp repo as a submodule --- .gitmodules | 4 ++++ cpp/simple/SConstruct | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 7be922e..97cb732 100644 --- a/.gitmodules +++ b/.gitmodules @@ -7,3 +7,7 @@ [submodule "c/instance_binding/godot-headers"] path = c/instance_binding/godot-headers url = https://github.com/godotengine/godot-headers.git +[submodule "cpp/simple/godot-cpp"] + path = cpp/simple/godot-cpp + url = https://github.com/godotengine/godot-cpp.git + diff --git a/cpp/simple/SConstruct b/cpp/simple/SConstruct index 0b99836..0bbf037 100644 --- a/cpp/simple/SConstruct +++ b/cpp/simple/SConstruct @@ -6,7 +6,7 @@ opts = Variables([], ARGUMENTS) # Gets the standard flags CC, CCX, etc. env = DefaultEnvironment() -godot_headers_path = "godot-cpp/godot_headers" +godot_headers_path = "godot-cpp/godot-headers" godot_bindings_path = "godot-cpp" # Define our options. Use future-proofed names for platforms.