-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b2db31c
commit 25b0059
Showing
8 changed files
with
8,048 additions
and
8,015 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
@echo off | ||
pushd src && tools\compile-gui && tools\build && popd && xcopy /y src\dist\*.exe . && gen-arc | ||
pushd src && tools\compile-gui && python tools\build.py && popd && xcopy /y src\dist\*.exe . && gen-arc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
cd src | ||
|
||
tools/compile-gui.sh | ||
tools/build.sh | ||
python3 tools/build.py | ||
|
||
cd .. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
|
||
from PyQt5.QtCore import QLibraryInfo | ||
import subprocess | ||
|
||
subprocess.call([ | ||
"pyinstaller", | ||
"--onefile", | ||
"--additional-hooks-dir=.", | ||
"--icon=media/icon.ico", | ||
"--hidden-import", | ||
"colorsys", | ||
"--windowed", | ||
"--add-data", | ||
r'%s;PyQt5\Qt\translations' % QLibraryInfo.location(QLibraryInfo.TranslationsPath), | ||
"-n", | ||
"turing", | ||
"-y", | ||
"main.py" | ||
]) | ||
|
||
subprocess.call([ | ||
"pyinstaller", | ||
"--onefile", | ||
"--additional-hooks-dir=.", | ||
"--icon=media/icon.ico", | ||
"--hidden-import", | ||
"pyqode.python.backend", | ||
"-y", | ||
"editor_backend.py" | ||
]) |
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.