25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-12-02 16:37:52 +01:00

mix:exs: When development tools is enabled, add debugger and wx

This commit is contained in:
Badlop 2024-11-25 17:19:14 +01:00
parent cc5c9f6008
commit f0773c4ab8

View File

@ -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