File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -59,11 +59,11 @@ you need to add the following lines to your SConstruct file:
5959.. code-block :: py
6060
6161 if env[" target" ] in [" editor" , " template_debug" ]:
62- try :
63- doc_data = env.GodotCPPDocData(" src/gen/doc_data.gen.cpp" , source = Glob(" doc_classes/*.xml" ))
64- sources.append(doc_data)
65- except AttributeError :
66- print (" Not including class reference as we're targeting a pre-4.3 baseline." )
62+ try :
63+ doc_data = env.GodotCPPDocData(" src/gen/doc_data.gen.cpp" , source = Glob(" doc_classes/*.xml" ))
64+ sources.append(doc_data)
65+ except AttributeError :
66+ print (" Not including class reference as we're targeting a pre-4.3 baseline." )
6767
6868 The if-statement checks if we are compiling the GDExtension library with the ``editor `` and ``template_debug ``
6969flags. SCons then tries to load all the XML files inside the ``doc_classes `` directory and appends them
You can’t perform that action at this time.
0 commit comments