-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.cmd
25 lines (17 loc) · 949 Bytes
/
build.cmd
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
echo off
cls
echo ##### BUILD.CMD #####
echo #### Building ####
pyinstaller --specpath "src/build/spec" --distpath "src/build/SussyLauncher" --workpath "src/build/build" --noconfirm --onedir --windowed --add-data "C:\Program Files\Python311\lib\Site-packages\customtkinter;customtkinter" "src/SussyLauncher V1.7.pyw"
pyinstaller --specpath "src/build/spec" --distpath "src/build/SussyLauncher" --workpath "src/build/build" --noconfirm --onedir --windowed --add-data "%appdata%\Python\Python311\site-packages\customtkinter;customtkinter" "src/SussyLauncher V1.7.pyw"
echo #### Copying Files ####
echo ## Copying assets ##
xcopy "src/assets/*" "src/build/assets" /E /I /F /Y
echo ## Copying data ##
xcopy "src/data/*" "src/build/data" /E /I /F /Y
echo ## Copying libraries ##
xcopy "src/libraries/*" "src/build/libraries" /E /I /F /Y
echo ## Copying tunnel ##
xcopy "src/frpc/*" "src/build/frpc" /E /I /F /Y
echo ##### BUILD DONE #####
pause