forked from mirrors/0ad
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 |