Packages
Membrane Multimedia Framework (SDL Element)
Current section
Files
Jump to
Current section
Files
membrane_element_sdl
bundlex.exs
bundlex.exs
defmodule Membrane.Element.SDL.BundlexProject do
use Bundlex.Project
def project do
[
cnodes: cnodes(Bundlex.platform())
]
end
defp cnodes(_platform) do
[
player: [
sources: ["player.c", "cnodeserver.c"],
deps: [shmex: :lib_cnode, bunch_native: :bunch],
pkg_configs: ["sdl2"]
]
]
end
end