Current section

Files

Jump to
cflat mix.exs
Raw

mix.exs

defmodule Cflat.MixProject do
use Mix.Project
def project do
[
app: :cflat,
version: "0.2.4",
elixir: "~> 1.16",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
compilers: [:yecc, :leex] ++ Mix.compilers()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, "~> 0.19", only: :dev, runtime: false},
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
defp description() do
"Implements the C♭ language (which aims to be a subset of C#)."
end
defp package() do
[
licenses: ["BSD-3-Clause"],
links: %{"GitHub" => "https://github.com/aslakjohansen/cflat"}
]
end
end