Skip to content

Commit f7f6739

Browse files
committed
Include about text in app builds
1 parent b5549e6 commit f7f6739

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build_mac.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ fi
88
VERSION=`python athena_version.py`
99

1010
pyinstaller ./src/main.py --add-data "ui:ui" --add-data "tools:tools" --add-data "sample_inputs:sample_inputs" \
11-
--add-data "src/qml:qml" --add-data "src/shaders:shaders" \
11+
--add-data "src/qml:qml" --add-data "src/shaders:shaders" --add-data "src/txt:txt" \
1212
--add-data "athena_version.py:." \
1313
--add-binary "${VIRTUAL_ENV}/lib/python3.7/site-packages/PySide2/Qt/plugins/geometryloaders:qt5_plugins/geometryloaders" \
1414
--osx-bundle-identifier="edu.mit.lcbb.athena" \

build_win.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ IF NOT EXIST "athena_version.py" (
33
python .\build_preflight.py
44
)
55
pyinstaller .\src\main.py --add-data "ui;ui" --add-data "tools;tools" --add-data "sample_inputs;sample_inputs" ^
6-
--add-data "src/qml;qml" --add-data "src/shaders;shaders" ^
6+
--add-data "src/qml;qml" --add-data "src/shaders;shaders" --add-data "src/txt;txt" ^
77
--add-data "athena_version.py;version.py" ^
88
--add-binary "%VIRTUAL_ENV%/Lib/site-packages/PySide2/plugins/geometryloaders;qt5_plugins/geometryloaders" ^
99
--version-file version_info.txt --name Athena --icon icon\athena.ico %*

0 commit comments

Comments
 (0)