diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-04-20 12:42:54 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-04-20 12:42:54 +0200 |
commit | 2b20a707cbbe4472ea40fb853fcfe3483f990607 (patch) | |
tree | 179c53f9a7678221717600b146963132452948b3 /platform/linuxbsd/detect.py | |
parent | 1f5811eb032d643df94d935ac7ecb65af33bf3ac (diff) | |
parent | a5128e71bbcc57166412a222d65dbb05ed939d1b (diff) | |
download | redot-engine-2b20a707cbbe4472ea40fb853fcfe3483f990607.tar.gz |
Merge pull request #76251 from bruvzg/docs_platf
[Export docs] Move docs to platform folders.
Diffstat (limited to 'platform/linuxbsd/detect.py')
-rw-r--r-- | platform/linuxbsd/detect.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/platform/linuxbsd/detect.py b/platform/linuxbsd/detect.py index 54351757cd..0bebd29f89 100644 --- a/platform/linuxbsd/detect.py +++ b/platform/linuxbsd/detect.py @@ -56,6 +56,16 @@ def get_opts(): ] +def get_doc_classes(): + return [ + "EditorExportPlatformLinuxBSD", + ] + + +def get_doc_path(): + return "doc_classes" + + def get_flags(): return [ ("arch", detect_arch()), |