This commit is contained in:
NishiOwO
2025-12-05 07:45:43 +09:00
parent 134b4b68ce
commit 771faf1418
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
#!/bin/sh
echo '/*!' >> include/Mw/Resource/Icon.h
echo '/*!' > include/Mw/Resource/Icon.h
echo ' * @file Mw/Resource/Icon.h' >> include/Mw/Resource/Icon.h
echo ' * @brief Icon' >> include/Mw/Resource/Icon.h
echo ' */' >> include/Mw/Resource/Icon.h

View File

@@ -1,6 +1,6 @@
#!/bin/sh
for out in src/font/ttf.c src/font/boldttf.c; do
echo '#include <Mw/Milsko.h>' >> $out
echo '#include <Mw/Milsko.h>' > $out
echo '' >> $out
echo '#if defined(USE_STB_TRUETYPE) || defined(USE_FREETYPE2)' >> $out
done