1
0
mirror of https://gitlab.os-k.eu/neox/CNIRevelator.git synced 2023-08-25 14:03:10 +02:00
CNIRevelator/make.bat

19 lines
798 B
Batchfile
Raw Normal View History

2019-07-01 21:45:07 +02:00
@echo off
2019-07-08 00:17:30 +02:00
title Compilation de CNIRLauncher
call pyinstaller -w -D --exclude-module PyQt5 --bootloader-ignore-signals --add-data "C:\users\adrie\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" -n CNILauncher src\launcher\CNIRLauncher.py
2019-07-01 23:33:05 +02:00
title Compilation de CNIRevelator
2019-07-01 21:45:07 +02:00
2019-07-01 23:33:05 +02:00
call pyinstaller -w -D --exclude-module PyQt5 --bootloader-ignore-signals --add-data "C:\users\adrie\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" -n CNIRevelator src\analyzer\CNI_Revelator.py
2019-07-01 21:45:07 +02:00
2019-07-01 23:33:05 +02:00
copy LICENSE dist\CNIRevelator\
2019-07-08 00:17:30 +02:00
copy id-card.ico dist\CNIRevelator\
robocopy dist\CNILauncher dist\CNIRevelator /E /MOVE
rmdir dist\CNILauncher /Q /S
2019-07-01 21:45:07 +02:00
pause