Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMickael Remond <mremond@process-one.net>2015-09-07 18:35:58 +0300
committerMickael Remond <mremond@process-one.net>2015-09-07 18:35:58 +0300
commit420cf68ecd354d212909cda0e7772af87b95313b (patch)
tree75c6a73046dd2a596c69df82e29cfc3158b76bb4 /mix.exs
parent64d1efa6f2fd21eea3244a429a7c6a92374d7af0 (diff)
Use our own includes + includes from all dependencies
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs5
1 files changed, 3 insertions, 2 deletions
diff --git a/mix.exs b/mix.exs
index 99e00b0d8..b71d3cc08 100644
--- a/mix.exs
+++ b/mix.exs
@@ -21,8 +21,9 @@ defmodule Ejabberd.Mixfile do
end
defp erlc_options do
- includes = Path.wildcard(Path.join("..", "/*/include"))
- [:debug_info, {:d, :NO_EXT_LIB}] ++ Enum.map(includes, fn(path) -> {:i, path} end)
+ # 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