Current section
Files
Jump to
Current section
Files
ex_libnice
bundlex.exs
bundlex.exs
defmodule ExLibnice.BundlexProject do
use Bundlex.Project
def project do
[
natives: natives()
]
end
defp natives() do
[
native: [
sources: ["native.c", "parser.c"],
deps: [unifex: :unifex],
pkg_configs: ["nice"],
interface: [:nif, :cnode],
preprocessor: Unifex
]
]
end
end