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.
1 parent 1d3ae5a commit 6457b74Copy full SHA for 6457b74
SConstruct
@@ -38,7 +38,10 @@ 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
-sources = Glob("src/*.cpp")
+for root, folders, files in os.walk("src"):
42
+ if root.endswith("gen"):
43
+ continue
44
+ sources += Glob(os.path.join(root, "*.cpp"))
45
46
if env["target"] in ["editor", "template_debug"]:
47
try:
0 commit comments