mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2024-12-04 01:41:40 +00:00
14 lines
392 B
Lua
14 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
|
||
|
}
|