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