summaryrefslogtreecommitdiff
path: root/editor/SCsub
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-03-24 09:54:49 +0100
committerRémi Verschelde <rverschelde@gmail.com>2020-03-24 09:56:04 +0100
commitcfd84625f0dbd5590e94ecf851bd7b7db5c7665b (patch)
tree319f6234471eabfec2c7ea62e22763a8a535c53d /editor/SCsub
parent9d245415971a83d7989fc57fa176868aad728841 (diff)
Move DocData and Collada out of their subfolders
Now that the unused DocDump was removed, the `editor/doc` subfolder is redundant. Similarly, there's no reason for Collada to have a subfolder for itself when glTF or OBJ don't.
Diffstat (limited to 'editor/SCsub')
-rw-r--r--editor/SCsub4
1 files changed, 1 insertions, 3 deletions
diff --git a/editor/SCsub b/editor/SCsub
index e54383350e..6e8679b770 100644
--- a/editor/SCsub
+++ b/editor/SCsub
@@ -56,7 +56,7 @@ if env['tools']:
except OSError:
pass
- _make_doc_data_class_path(os.path.join(env.Dir('#').abspath, "editor/doc"))
+ _make_doc_data_class_path(os.path.join(env.Dir('#').abspath, "editor"))
docs = sorted(docs)
env.Depends("#editor/doc_data_compressed.gen.h", docs)
@@ -85,8 +85,6 @@ if env['tools']:
env.add_source_files(env.editor_sources, "*.cpp")
- SConscript('collada/SCsub')
- SConscript('doc/SCsub')
SConscript('debugger/SCsub')
SConscript('fileserver/SCsub')
SConscript('icons/SCsub')