mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-06-24 14:47:12 +00:00
38283af23c
This was SVN commit r251.
7 lines
143 B
Lua
Executable File
7 lines
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 |