Initial release

This commit is contained in:
civ
2026-08-16 18:24:52 +07:00
commit 876886a39a
13244 changed files with 2353959 additions and 0 deletions
@@ -0,0 +1,17 @@
#!/bin/bash
echo `pwd`
mkdir -p "$1"
rm -f "$1/editoruidesc.h"
echo -n "constexpr auto editorUIDesc = R\"====(" >> "$1/editoruidesc.h"
cat uidescriptioneditor.uidesc >> "$1/editoruidesc.h"
echo ")====\";" >> "$1/editoruidesc.h"
echo -n "constexpr auto editorUILightDesc = R\"====(" >> "$1/editoruidesc.h"
cat uidescriptioneditor_res_light.uidesc >> "$1/editoruidesc.h"
echo ")====\";" >> "$1/editoruidesc.h"
echo -n "constexpr auto editorUIDarkDesc = R\"====(" >> "$1/editoruidesc.h"
cat uidescriptioneditor_res_dark.uidesc >> "$1/editoruidesc.h"
echo ")====\";" >> "$1/editoruidesc.h"