0ad/source/premake/functions.lua
janwas df282bb714 forgot to add actual premake contents. doh
This was SVN commit r219.
2004-05-07 01:32:49 +00:00

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