DISABLE FDs (REMOVE ME).
[jackhill/mal.git] / elixir / mix.exs
1 defmodule Mal.Mixfile do
2 use Mix.Project
3
4 def project do
5 [app: :mal,
6 version: "0.0.1",
7 elixir: "~> 1.5",
8 build_embedded: Mix.env == :prod,
9 start_permanent: Mix.env == :prod,
10 deps: deps(),
11 default_task: "stepA_mal",
12 escript: escript()]
13 end
14
15 def escript do
16 [main_module: Mix.Tasks.StepAMal]
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
38 end