40 lines
886 B
Elixir
40 lines
886 B
Elixir
defmodule FFI.Mixfile do
|
|
use Mix.Project
|
|
|
|
def project do
|
|
[app: :ffi,
|
|
version: "0.0.1-alpha",
|
|
description: "Foreign Function Interface",
|
|
package: [
|
|
maintainers: ["Joshua Nussbaum"],
|
|
licenses: ["MIT"],
|
|
links: %{github: "https://github.com/joshnuss/elixir-ffi"}
|
|
],
|
|
elixir: "~> 1.19",
|
|
compilers: [:elixir_make] ++ Mix.compilers,
|
|
deps: deps]
|
|
end
|
|
|
|
# Configuration for the OTP application
|
|
#
|
|
# Type `mix help compile.app` for more information
|
|
def application do
|
|
[extra_applicationss: [:logger]]
|
|
end
|
|
|
|
# Dependencies can be Hex packages:
|
|
#
|
|
# {:mydep, "~> 0.3.0"}
|
|
#
|
|
# Or git/path repositories:
|
|
#
|
|
# {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
|
|
#
|
|
# Type `mix help deps` for more examples and options
|
|
defp deps do
|
|
[
|
|
{:elixir_make, "~> 0.1.0"}
|
|
]
|
|
end
|
|
end
|