mirror of
https://gitlab.os-k.eu/neox/CNIRevelator.git
synced 2023-08-25 14:03:10 +02:00
11 lines
391 B
Batchfile
11 lines
391 B
Batchfile
@echo off
|
|
title Compilation de CNIRevelator
|
|
|
|
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\CNIRevelator.py
|
|
|
|
copy LICENSE dist\CNIRevelator\
|
|
copy id-card.ico dist\CNIRevelator\
|
|
|
|
pause
|
|
|