Create a mix file so OTP releases will work correctly

Signed-off-by: Tom Wilson <tom.wilson@isobar.com>
This commit is contained in:
Tom Wilson 2017-01-26 18:24:30 +11:00
parent d6777dd2ec
commit 56154af3af

19
mix.exs Normal file
View File

@ -0,0 +1,19 @@
defmodule QRCode.Mixfile do
use Mix.Project
def project do
[app: :qrcode,
version: "0.0.1",
language: :erlang,
deps: deps]
end
def application do
[applications: [], mod: {:qrcode, []}]
end
defp deps do
[
]
end
end