-
Notifications
You must be signed in to change notification settings - Fork 4
/
mix.exs
34 lines (29 loc) · 946 Bytes
/
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
# Copyright (c) Meta Platforms, Inc. and affiliates.
# Copyright (c) WhatsApp LLC
#
# This source code is licensed under the MIT license found in the
# LICENSE.md file in the root directory of this source tree.
defmodule ErldistFilterElixirTests.MixProject do
use Mix.Project
def project() do
[
app: :erldist_filter_elixir_tests,
version: "1.0.0",
elixir: "~> 1.14",
deps: deps(),
elixirc_paths: elixirc_paths(Mix.env())
]
end
def application() do
[extra_applications: [:logger, :observer, :runtime_tools, :erldist_filter]]
end
# Run "mix help deps" to learn about dependencies.
defp deps() do
[
{:erldist_filter, path: "apps/erldist_filter", only: :test, override: true},
{:erldist_filter_test, path: "apps/erldist_filter_test", only: :test, override: true}
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
end