CNIRevelator/make.bat

22 lines
722 B
Batchfile
Raw Normal View History

2019-08-07 15:30:45 +02:00
@echo off
2019-07-01 23:33:05 +02:00
title Compilation de CNIRevelator
2019-08-07 15:30:45 +02:00
call pyinstaller -w -D --exclude-module PyQt5 --bootloader-ignore-signals --add-data "C:\Users\pf04950\AppData\Local\Continuum\anaconda3\Lib\site-packages\tld\res\effective_tld_names.dat.txt";"tld\res" --add-data "id-card.ico";"id-card.ico" -i "id-card.ico" --add-data "background.png";"background.png" -i "background.png" -n CNIRevelator src\CNIRevelator.py
2019-07-01 21:45:07 +02:00
2019-08-07 15:30:45 +02:00
copy LICENSE dist\CNIRevelator\
2019-07-01 21:45:07 +02:00
2019-08-07 15:30:45 +02:00
copy src\id-card.ico dist\CNIRevelator\
copy src\background.png dist\CNIRevelator\
2019-07-08 00:17:30 +02:00
2019-08-07 15:30:45 +02:00
D:\Public\CNIRevelator-master\CNIRevelator-master\signtool_8.1\signtool\signtool.exe sign /n "CNIRevelator by Adrien Bourmault (neox95)" dist\CNIRevelator\CNIRevelator.exe
2019-07-01 21:45:07 +02:00
pause