2014-09-14 08:36:58 +02:00

18 lines
360 B
Lua

module(..., package.seeall)
local function generic_dotnet_setup(env)
end
function apply(env, options)
env:add_setup_function(generic_dotnet_setup)
env:set_many {
["CSLIBS"] = "", -- assembly references
["CSLIBPATH"] = {}, -- assembly directories
["CSCOPTS"] = "-optimize",
["CSRESOURCES"] = "",
["CSC_WARNING_LEVEL"] = "4",
}
end