-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcx_freeze.bat
More file actions
47 lines (39 loc) · 1.09 KB
/
cx_freeze.bat
File metadata and controls
47 lines (39 loc) · 1.09 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
@ECHO OFF
CLS
ECHO Removing cache directory...
RMDIR /Q /S "__pycache__"
RMDIR /Q /S "__pycache__"
ECHO Removing build directory...
RMDIR /Q /S "build"
RMDIR /Q /S "build"
ECHO Removing windows-version directory...
RMDIR /Q /S "windows-version"
RMDIR /Q /S "windows-version"
ECHO Creating windows-version directory...
MD "windows-version"
ECHO Compiling executable...
setup.py build
ECHO.
ECHO Copying application files...
COPY /Y "about.png" "build"
COPY /Y "add_files.png" "build"
COPY /Y "add_folder.png" "build"
COPY /Y "clear.png" "build"
COPY /Y "counter.png" "build"
COPY /Y "crop.png" "build"
COPY /Y "extension.png" "build"
COPY /Y "help.png" "build"
COPY /Y "icon.png" "build"
COPY /Y "insert.png" "build"
COPY /Y "quit.png" "build"
COPY /Y "regex.png" "build"
COPY /Y "remove.png" "build"
COPY /Y "rename.png" "build"
COPY /Y "replace.png" "build"
COPY /Y "text_case.png" "build"
COPY /Y "trim.png" "build"
COPY /Y "gpl.txt" "build"
COPY /Y "icons.txt" "build"
COPY /Y "license.txt" "build"
COPY /Y "README.md" "build"
COPY /Y "whats_new.txt" "build"