chore: add auto Windows CLI tests

This commit is contained in:
Stéphane Lesimple
2020-08-30 17:58:31 +02:00
parent 71b32a30a1
commit bd70bcef1b
3 changed files with 65 additions and 4 deletions

View File

@@ -348,5 +348,14 @@ windist:
cp -vr $(MINGWROOT)/lib/gtk-2.0 dist/lib/
find dist -type f -name "*.a" -delete
windistcli:
rm -rf dist
mkdir -p dist/locale
for i in libglib-2.0-*.dll libiconv-*.dll libintl-*.dll libpcre-*.dll libwinpthread-*.dll; \
do cp -v $(MINGWROOT)/bin/$$i dist/ ; done
cp -v dvdisaster.exe dist/
cp -vr locale/*/ dist/locale/
find dist -type f -name "*.a" -delete
static: dvdisaster
$(CC) $(LOPTS) $(OFILES) $(LIBS) -pthread -static -o dvdisaster-static