From f1c294789689e45bb5f20514a6438f7bc40b4859 Mon Sep 17 00:00:00 2001 From: Quentin Quadrat Date: Sat, 20 Jul 2024 20:21:41 +0200 Subject: [PATCH] build: allow git cloning a tag on godot-cpp instead of tracking HEAD of the branch BEWARE: if tracking godot-4.2.2-stable and using scons 4.8, you will have this error "NameError: name 'BoolVariable' is not defined:". You probably have to follow the HEAD of the 4.2 for now. --- addons/gdcef/build.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/gdcef/build.py b/addons/gdcef/build.py index a971c93..32b1f97 100755 --- a/addons/gdcef/build.py +++ b/addons/gdcef/build.py @@ -46,10 +46,10 @@ # Do not use version 4.1 since gdextension is probably not compatible. # Do not use version 3.4 or 3.5 with this current gdcef git branch. Please git # checkout gdcef to its branch godot-3.x. -GODOT_VERSION = "4.2.2" # or "4.2" -# Tag "godot-xxx-stable" on https://github.com/godotengine/godot-cpp -# Else you can use the HEAD of your desired branch (i.e. "4.2") -GODOT_CPP_GIT_TAG = "godot-" + GODOT_VERSION + "-stable" # or GODOT_VERSION +GODOT_VERSION = "4.2" # or "4.2.2" for tag +# Use "godot--stable" for a tag on https://github.com/godotengine/godot-cpp +# Else "" to track the HEAD of your desired branch version (i.e. "4.2") +GODOT_CPP_GIT_TAG = GODOT_VERSION # or "godot-" + GODOT_VERSION + "-stable" # Compilation mode for the thirdpart CEF CEF_TARGET = "Release" # or "Debug" # Compilation mode for the thirdpart godot-cpp