-
Notifications
You must be signed in to change notification settings - Fork 0
/
cx_freeze.bat
43 lines (33 loc) · 882 Bytes
/
cx_freeze.bat
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
@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 "fseparator.png" "build"
COPY /Y "hheader.png" "build"
COPY /Y "icon.png" "build"
COPY /Y "open_file.png" "build"
COPY /Y "quit.png" "build"
COPY /Y "setheader.png" "build"
COPY /Y "tdelimiter.png" "build"
COPY /Y "vheader.png" "build"
COPY /Y "test.csv" "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"
ECHO.