We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1d3ae5a + 84c86b3 commit 4d5b306Copy full SHA for 4d5b306
SConstruct
@@ -38,7 +38,11 @@ Run the following command to download godot-cpp:
38
env = SConscript("godot-cpp/SConstruct", {"env": env, "customs": customs})
39
40
env.Append(CPPPATH=["src/"])
41
+
42
sources = Glob("src/*.cpp")
43
+sources.extend(Glob("src/*/*.cpp"))
44
+sources.extend(Glob("src/*/*/*.cpp"))
45
+sources.extend(Glob("src/*/*/*/*.cpp"))
46
47
if env["target"] in ["editor", "template_debug"]:
48
try:
0 commit comments