1
0
forked from 0ad/0ad
0ad/build/premake/functions.lua
Ykkrosh ec3452679c Restructuring
This was SVN commit r1453.
2004-12-05 17:59:29 +00:00

7 lines
161 B
Lua
Executable File

function sourcesfromdirs(root, ...)
local res = {}
for i=1, getn(arg) do
res[i]=matchfiles(root..arg[i].."/*.cpp", root..arg[i].."/*.h")
end
return res
end