Files
NazaraEngine/documentation/generator/xmake.lua
2023-03-21 13:21:00 +01:00

9 lines
210 B
Lua

add_requires("cppast", "nlohmann_json")
target("docgen", function ()
set_rundir("../")
add_files("src/*.cpp")
add_deps("NazaraCore")
add_packages("cppast", "nazarautils", "nlohmann_json")
end)