DISABLE FDs (REMOVE ME).
[jackhill/mal.git] / elixir / mix.exs
CommitLineData
51c2c1fe 1defmodule Mal.Mixfile do
2 use Mix.Project
3
4 def project do
5 [app: :mal,
6 version: "0.0.1",
e68e138f 7 elixir: "~> 1.5",
51c2c1fe 8 build_embedded: Mix.env == :prod,
9 start_permanent: Mix.env == :prod,
e68e138f 10 deps: deps(),
b6dc3e37 11 default_task: "stepA_mal",
e68e138f 12 escript: escript()]
b6dc3e37
JM
13 end
14
15 def escript do
16 [main_module: Mix.Tasks.StepAMal]
51c2c1fe 17 end
18
19 # Configuration for the OTP application
20 #
21 # Type `mix help compile.app` for more information
22 def application do
23 [applications: [:logger]]
24 end
25
26 # Dependencies can be Hex packages:
27 #
28 # {:mydep, "~> 0.3.0"}
29 #
30 # Or git/path repositories:
31 #
32 # {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
33 #
34 # Type `mix help deps` for more examples and options
35 defp deps do
36 []
37 end
38end