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 789e3b7 commit b6f1e24Copy full SHA for b6f1e24
.gitignore
@@ -15,6 +15,7 @@
15
.cxx
16
local.properties
17
/thirdparty/ovr_platform_sdk/
18
+/toolkit/src/gen/
19
20
# Binaries
21
*.o
SConstruct
@@ -32,6 +32,10 @@ sources += Glob("#toolkit/src/main/cpp/export/*.cpp")
32
sources += Glob("#toolkit/src/main/cpp/platform_sdk/*.cpp")
33
sources += Glob("#toolkit/gen/src/*.cpp")
34
35
+if env["target"] in ["editor", "template_debug"]:
36
+ doc_data = env.GodotCPPDocData("#toolkit/src/gen/doc_data.gen.cpp", source=Glob("doc_classes/*.xml"))
37
+ sources.append(doc_data)
38
+
39
binary_path = '#demo/addons/godot_meta_toolkit/.bin'
40
android_src_path = '#toolkit/src'
41
project_name = 'godot_meta_toolkit'
0 commit comments