-
Notifications
You must be signed in to change notification settings - Fork 9
/
mix.exs
76 lines (66 loc) · 1.66 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
defmodule HNSWLib.MixProject do
use Mix.Project
@version "0.1.6-dev"
@github_url "https://github.com/elixir-nx/hnswlib"
def project do
[
app: :hnswlib,
version: @version,
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
docs: docs(),
main: "HNSWLib",
description: "Elixir binding for the hnswlib library",
compilers: [:elixir_make] ++ Mix.compilers(),
make_precompiler: {:nif, CCPrecompiler},
make_precompiler_url: "#{@github_url}/releases/download/v#{@version}/@{artefact_filename}",
make_precompiler_filename: "hnswlib_nif",
make_precompiler_nif_versions: [versions: ["2.16", "2.17"]],
cc_precompiler: cc_precompiler()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
# compilation
{:cc_precompiler, "~> 0.1.0"},
{:elixir_make, "~> 0.8.0"},
# runtime
{:nx, "~> 0.5"},
# docs
{:ex_doc, "~> 0.29", only: :docs, runtime: false}
]
end
defp docs do
[
source_ref: "v#{@version}",
source_url: @github_url
]
end
defp cc_precompiler do
extra_options =
if System.get_env("HNSWLIB_CI_PRECOMPILE") == "true" do
[
only_listed_targets: true,
exclude_current_target: true
]
else
[]
end
[cleanup: "cleanup"] ++ extra_options
end
defp package() do
[
files:
~w(3rd_party/hnswlib c_src lib mix.exs README* LICENSE* CMakeLists.txt Makefile checksum.exs),
licenses: ["Apache-2.0"],
links: %{"GitHub" => @github_url}
]
end
end