-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmix.exs
119 lines (105 loc) · 2.71 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
defmodule Snapex7.MixProject do
use Mix.Project
def project do
[
app: :snapex7,
version: "0.1.3",
elixir: "~> 1.8",
name: "Snapex7",
description: description(),
package: package(),
source_url: "https://github.com/valiot/snapex7",
compilers: [:elixir_make] ++ Mix.compilers(),
make_targets: ["all"],
make_clean: ["clean"],
make_executable: make_executable(),
make_makefile: "src/Makefile",
make_error_message: make_error_message(),
make_env: &make_env/0,
docs: [extras: ["README.md"], main: "readme"],
start_permanent: Mix.env() == :prod,
build_embedded: true,
deps: deps()
]
end
defp make_env() do
base =
Mix.Project.compile_path()
|> Path.join("..")
|> Path.expand()
%{
"MIX_ENV" => to_string(Mix.env()),
"PREFIX" => Path.join(base, "priv"),
"BUILD" => Path.join(base, "obj")
}
|> Map.merge(ei_env())
end
defp ei_env() do
case System.get_env("ERL_EI_INCLUDE_DIR") do
nil ->
%{
"ERL_EI_INCLUDE_DIR" => "#{:code.root_dir()}/usr/include",
"ERL_EI_LIBDIR" => "#{:code.root_dir()}/usr/lib"
}
_ ->
%{}
end
end
defp make_executable do
case :os.type() do
{:win32, _} ->
"mingw32-make"
_ ->
:default
end
end
@windows_mingw_error_msg """
You may need to install mingw-w64 and make sure that it is in your PATH. Test this by
running `gcc --version` on the command line.
If you do not have mingw-w64, one method to install it is by using
Chocolatey. See http://chocolatey.org to install Chocolatey and run the
following from and command prompt with administrative privileges:
`choco install mingw`
"""
defp make_error_message do
case :os.type() do
{:win32, _} -> @windows_mingw_error_msg
_ -> :default
end
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp description() do
"Elixir wrapper for Snap7, for communication with Siemens PLC's."
end
defp package() do
[
files: [
"lib",
"src/*.[ch]",
"src/Makefile",
"src/snap7/src",
"src/snap7/build",
"src/snap7/examples/plain-c/*.h",
"test",
"mix.exs",
"README.md",
"LICENSE"
],
maintainers: ["valiot"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/valiot/snapex7"}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:elixir_make, "~> 0.5", runtime: false},
{:ex_doc, "~> 0.24", only: :dev, runtime: false},
]
end
end