Current section

Files

Jump to
ex_libnice bundlex.exs
Raw

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"],
libs: ["pthread"],
interface: :cnode,
preprocessor: Unifex
]
]
end
end