From f0773c4ab8f39bf307e81f56b4ec62424b3a87c3 Mon Sep 17 00:00:00 2001 From: Badlop Date: Mon, 25 Nov 2024 17:19:14 +0100 Subject: [PATCH] mix:exs: When development tools is enabled, add debugger and wx --- mix.exs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 6bb5936d7..494d0c7d1 100644 --- a/mix.exs +++ b/mix.exs @@ -184,7 +184,9 @@ defmodule Ejabberd.MixProject do defp cond_apps do for {:true, app} <- [{config(:stun), :stun}, {if_version_below(~c"27", true), :jiffy}, - {config(:tools), :observer}], do: + {config(:tools), :debugger}, + {config(:tools), :observer}, + {config(:tools), :wx}], do: app end