mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2024-12-02 17:02:17 +00:00
13 lines
392 B
Lua
13 lines
392 B
Lua
--
|
|
-- Use the embed action to convert all of the renderprogs scripts into C strings, which
|
|
-- can then be built into the executable. Always embed the scripts before creating
|
|
-- a release build.
|
|
--
|
|
dofile("premake/embed.lua")
|
|
|
|
newaction
|
|
{
|
|
trigger = "embed",
|
|
description = "Embed renderprogs and scripts in into the engine code; required before release builds",
|
|
execute = doembed
|
|
}
|