CMake compiler for Mix
A CMake compiler to help building Ports/NIFs in your Elixir/mix project.
Installation
Add elixir_cmake
to your list of dependencies in mix.exs
:
def deps do
[
{:elixir_cmake, "~> 0.1.0"}
]
end
Add :cmake
to your compilers in mix.exs
:
def project do
[
# ...
compilers: [:cmake] ++ Mix.compilers(),
# ...
]
end
Basic Usage
TODO
Configuration Options
TODO
Be sure to read the documentation too.