mirror of https://gitlab.com/basile.b/dexed.git
24 lines
648 B
D
24 lines
648 B
D
// generate the Pascal code for using Coedit icon data at run-time.
|
|
// usage: open in Coedit then click File, compile and run file.
|
|
module generate_res;
|
|
|
|
import std.file;
|
|
import std.path;
|
|
import std.string;
|
|
import std.process;
|
|
|
|
void main(string[] args)
|
|
{
|
|
auto path = args[0].dirName;
|
|
string cmd[];
|
|
// resource compiler
|
|
cmd ~= "lazres";
|
|
// pascal source to include
|
|
cmd ~= ".." ~ dirSeparator ~ "src" ~ dirSeparator ~ "ce_icons.inc";
|
|
// resource items
|
|
foreach(f; dirEntries(path, "*.png", SpanMode.depth)) {
|
|
cmd ~= format("%s=%s",f.name, f.name.baseName.stripExtension);
|
|
}
|
|
spawnProcess(cmd).wait;
|
|
}
|