This repository has been archived by the owner on Jul 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathmix.exs
82 lines (76 loc) · 1.94 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
defmodule Scenic.Driver.Glfw.MixProject do
use Mix.Project
@github "https://github.com/boydm/scenic_driver_glfw"
@version "0.10.1"
def project do
[
app: :scenic_driver_glfw,
version: @version,
build_path: "_build",
config_path: "config/config.exs",
deps_path: "deps",
lockfile: "mix.lock",
elixir: "~> 1.8",
description: description(),
build_embedded: true,
start_permanent: Mix.env() == :prod,
compilers: [:elixir_make] ++ Mix.compilers(),
make_env: %{"MIX_ENV" => to_string(Mix.env())},
make_clean: ["clean"],
deps: deps(),
dialyzer: [plt_add_deps: :transitive],
package: [
name: :scenic_driver_glfw,
contributors: ["Boyd Multerer"],
maintainers: ["Boyd Multerer"],
licenses: ["Apache 2"],
links: %{github: @github},
files: [
"c_src/**/*.[ch]",
"c_src/**/*.txt",
"config",
"priv/fonts/**/*.txt",
"priv/fonts/**/*.ttf.*",
"lib/**/*.ex",
"Makefile",
"mix.exs",
"README.md",
"LICENSE",
"changelist.md"
]
],
docs: [
extras: doc_guides(),
main: "overview",
source_ref: "v#{@version}",
source_url: "https://github.com/boydm/scenic_driver_glfw"
# homepage_url: "http://kry10.com",
]
]
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
[
{:elixir_make, "~> 0.6"},
{:scenic, "~> 0.10"},
{:ex_doc, ">= 0.0.0", only: [:dev]},
{:dialyxir, "~> 0.5", only: :dev, runtime: false}
]
end
defp description() do
"""
Scenic.Driver.Glfw - Main Scenic driver for MacOs and Ubuntu
"""
end
defp doc_guides do
[
"guides/overview.md"
]
end
end