Packages

inotify implementation using Unifex

Current section

Files

Jump to
exnotify bundlex.exs
Raw

bundlex.exs

defmodule Membrane.Element.Mad.BundlexProject do
use Bundlex.Project
def project() do
[
natives: natives(Bundlex.platform())
]
end
def natives(:linux) do
[
inotify: [
src_base: "inotify",
sources: ["inotify.c"],
preprocessor: Unifex,
interface: :cnode
]
]
end
end