forked from processone/ejabberd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
90 lines (78 loc) · 3.11 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
defmodule Ejabberd.Mixfile do
use Mix.Project
def project do
[app: :ejabberd,
version: "15.09.0",
elixir: "~> 1.0",
elixirc_paths: ["lib"],
compile_path: ".",
compilers: [:asn1] ++ Mix.compilers,
erlc_options: erlc_options,
erlc_paths: ["asn1", "src"],
package: package,
deps: deps]
end
def application do
[mod: {:ejabberd_app, []},
applications: [:ssl],
included_applications: [:p1_logger, :p1_yaml, :p1_tls, :p1_xml,
:p1_stringprep, :p1_zlib, :p1_cache_tab,
:mnesia, :p1_utils, :p1_iconv, :esip, :p1_stun,
:p1_mysql, :p1_pgsql, :eredis, :oauth2, :xmlrpc]]
end
defp erlc_options do
# Use our own includes + includes from all dependencies
includes = ["include"] ++ Path.wildcard(Path.join("..", "/*/include"))
[:debug_info] ++ Enum.map(includes, fn(path) -> {:i, path} end)
end
defp deps do
[{:p1_xml, git: "https://github.com/processone/xml"},
{:p1_logger, git: "https://github.com/processone/p1_logger"},
{:p1_yaml, git: "https://github.com/processone/p1_yaml"},
{:p1_tls, git: "https://github.com/processone/tls"},
{:p1_stringprep, git: "https://github.com/processone/stringprep"},
{:p1_zlib, git: "https://github.com/processone/zlib"},
{:p1_cache_tab, git: "https://github.com/processone/cache_tab"},
{:p1_utils, git: "https://github.com/processone/p1_utils"},
{:p1_iconv, git: "https://github.com/processone/eiconv"},
{:esip, git: "https://github.com/processone/p1_sip"},
{:p1_stun, git: "https://github.com/processone/stun"},
{:p1_mysql, git: "https://github.com/processone/mysql"},
{:p1_pgsql, git: "https://github.com/processone/pgsql"},
{:eredis, git: "https://github.com/wooga/eredis"},
{:oauth2, git: "https://github.com/prefiks/oauth2.git"},
{:xmlrpc, git: "https://github.com/rds13/xmlrpc.git"},
{:exrm, "~> 0.19.2"}]
end
defp package do
[licenses: ["GPLv2"],
links: %{"Site" => "https://www.ejabberd.im",
"Documentation" => "http://docs.ejabberd.im",
"Source" => "https://github.com/processone/ejabberd"}]
end
end
defmodule Mix.Tasks.Compile.Asn1 do
use Mix.Task
alias Mix.Compilers.Erlang
@recursive true
@manifest ".compile.asn1"
def run(args) do
{opts, _, _} = OptionParser.parse(args, switches: [force: :boolean])
project = Mix.Project.config
source_paths = project[:asn1_paths] || ["asn1"]
dest_paths = project[:asn1_target] || ["src"]
mappings = Enum.zip(source_paths, dest_paths)
options = project[:asn1_options] || []
Erlang.compile(manifest(), mappings, :asn1, :erl, opts[:force], fn
input, output ->
options = options ++ [:noobj, outdir: Erlang.to_erl_file(Path.dirname(output))]
case :asn1ct.compile(Erlang.to_erl_file(input), options) do
:ok -> {:ok, :done}
error -> error
end
end)
end
def manifests, do: [manifest]
defp manifest, do: Path.join(Mix.Project.manifest_path, @manifest)
def clean, do: Erlang.clean(manifest())
end