Files
NazaraEngine/plugins/FFmpeg/xmake.lua
SirLynix 292ca60592 WIP
2023-02-02 20:34:25 +01:00

17 lines
423 B
Lua

option("ffmpeg", { description = "Build FFmpeg plugin", default = false })
if has_config("ffmpeg") then
add_requires("ffmpeg", { configs = { shared = true } })
target("PluginFFmpeg")
set_group("Plugins")
add_rpathdirs("$ORIGIN")
add_deps("NazaraUtility")
add_packages("ffmpeg")
add_headerfiles("**.hpp", "**.inl", { prefixdir = "private", install = false })
add_includedirs(".")
add_files("**.cpp")
end