premake/modules/raw/_preload.lua
2017-06-20 14:44:26 -07:00

17 lines
306 B
Lua

newaction
{
trigger = "raw",
shortname = "Raw output",
description = "Generate raw representation of Premake structures",
onsolution = function(sln)
require('raw')
premake.generate(sln, ".raw", premake.raw.workspace)
end,
}
return function(cfg)
return (_ACTION == "raw")
end