Added experimental new build system

Former-commit-id: ab7fb35db6be4b975d0558680c840d72e38562f9
This commit is contained in:
Lynix
2015-01-20 23:37:49 +01:00
parent bce3cadfd5
commit debe39501e
19 changed files with 797 additions and 549 deletions

View File

@@ -1,4 +1,7 @@
function encodeResources()
ACTION.Name = "EncodeResources"
ACTION.Description = "Generate a includable header version of resources"
ACTION.Function = function ()
print("Encoding resources ...")
local startClock = os.clock()
local modules = os.matchdirs("../src/Nazara/*")
@@ -38,10 +41,3 @@ function encodeResources()
end
print("Finished (took " .. os.clock() - startClock .. "s)")
end
newaction
{
trigger = "encoderesources",
description = "Generate a includable header version of resources",
execute = encodeResources
}