mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-17 05:44:08 -07:00
7 lines
No EOL
143 B
Lua
Executable file
7 lines
No EOL
143 B
Lua
Executable file
function sourcesfromdirs(...)
|
|
local res = {}
|
|
for i=1, getn(arg) do
|
|
res[i]=matchfiles(arg[i].."/*.cpp", arg[i].."/*.h")
|
|
end
|
|
return res
|
|
end |