Current section
Files
Jump to
Current section
Files
mix.exs
# This file is only used by i3_client as a dependency. Use rebar3
# instead for compiling, running tests, etc.
defmodule I3Client.MixProject do
use Mix.Project
{:ok, [{:application, :i3_client, props}]} = :file.consult("src/i3_client.app.src")
@props Keyword.take(props, [:applications, :description, :env, :mod, :vsn])
def application do
@props
end
def project do
[
app: :i3_client,
version: to_string(application()[:vsn]),
language: :erlang
]
end
end