Skip to content

Commit

Permalink
Trying to fix macOS build
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyschoen committed Oct 11, 2024
1 parent d678896 commit 97d6e00
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,11 @@ cp -rf ./dpf-widgets ./Heavy/lib/dpf-widgets
python3 -m pip install poetry poetry-pyinstaller-plugin

pushd hvcc
poetry build
if [[ "$OSTYPE" == "darwin"* ]]; then
arch -x86_64 poetry build
elif [[ "$OSTYPE" == "linux-gnu"* ]]; then
poetry build
fi
popd

mkdir -p Heavy/bin/Heavy
Expand Down

0 comments on commit 97d6e00

Please sign in to comment.