From 56154af3af2c1d7896bc811d78e215c50a0ca8f0 Mon Sep 17 00:00:00 2001 From: Tom Wilson Date: Thu, 26 Jan 2017 18:24:30 +1100 Subject: [PATCH] Create a mix file so OTP releases will work correctly Signed-off-by: Tom Wilson --- mix.exs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 mix.exs diff --git a/mix.exs b/mix.exs new file mode 100644 index 0000000..226e058 --- /dev/null +++ b/mix.exs @@ -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