summaryrefslogtreecommitdiff
path: root/modules/webrtc/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/webrtc/config.py')
-rw-r--r--modules/webrtc/config.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/webrtc/config.py b/modules/webrtc/config.py
new file mode 100644
index 0000000000..48b4c33c5d
--- /dev/null
+++ b/modules/webrtc/config.py
@@ -0,0 +1,15 @@
+def can_build(env, platform):
+ return True
+
+def configure(env):
+ pass
+
+def get_doc_classes():
+ return [
+ "WebRTCPeerConnection",
+ "WebRTCDataChannel",
+ "WebRTCMultiplayer"
+ ]
+
+def get_doc_path():
+ return "doc_classes"