forked from CamielBouchier/cb_thunderlink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcb_build.bat
More file actions
30 lines (27 loc) · 706 Bytes
/
cb_build.bat
File metadata and controls
30 lines (27 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
@ECHO OFF
REM
REM $BeginLicense$
REM
REM (C) 2020-2021 by Camiel Bouchier (camiel@bouchier.be)
REM
REM This file is part of cb_thunderlink.
REM
REM License: Mozilla Public License Version 2.0
REM (https://github.com/CamielBouchier/cb_thunderlink/blob/main/LICENSE)
REM
REM $EndLicense$
REM
REM *****
REM
REM This bat file builds the cb_thunderlink distribution.
REM
cd mail_extension
"c:\Program Files\7-Zip\7z.exe" a cb_thunderlink.xpi @files_in_xpi.lst
cd ..
pyinstaller --noconfirm --workpath build_windows --distpath dist_windows cb_thunderlink.spec
cd dist_windows
"c:\Program Files\7-Zip\7z.exe" a cb_thunderlink_windows.zip cb_thunderlink
cd ..
REM
REM vim: ts=4 sw=4 sts=4 sr et columns=100
REM