1
1
mirror of https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2024-09-21 03:09:12 -04:00
OC-PsychOS2/build.lua
2023-07-31 08:11:24 +10:00

8 lines
219 B
Lua

local preproc = require "preproc"
--local tA = {...}
function preproc.directives.includelib(file,name)
return string.format("package.loaded.%s = (function()\n%s\nend)()", name, preproc.preproc(file))
end
preproc(...)