diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-03-28 19:56:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-28 19:56:20 +0200 |
commit | 4799009a0fa21a46a816fdf146d99669720fe902 (patch) | |
tree | c46866d19d26f7dd3cfd1661dea917e3dfbd17f3 /modules/websocket/SCsub | |
parent | 25af3ad5bee429a4efcf4649a2bfb61831b49dd5 (diff) | |
parent | 5fe6984639b5db9efa14103698e489040315ebfb (diff) |
Merge pull request #59631 from akien-mga/websocket-no-tools-disable-editor-code
Modules: Don't build editor-specific classes in templates
Diffstat (limited to 'modules/websocket/SCsub')
-rw-r--r-- | modules/websocket/SCsub | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/websocket/SCsub b/modules/websocket/SCsub index 63c941c4a8..dc0661995f 100644 --- a/modules/websocket/SCsub +++ b/modules/websocket/SCsub @@ -41,6 +41,8 @@ elif env["builtin_wslay"]: module_obj = [] env_ws.add_source_files(module_obj, "*.cpp") +if env["tools"]: + env_ws.add_source_files(module_obj, "editor/*.cpp") env.modules_sources += module_obj # Needed to force rebuilding the module files when the thirdparty library is updated. |