Skip to content

Commit

Permalink
Merge pull request #56 from rf152/main
Browse files Browse the repository at this point in the history
Updated install script to copy correct NDI libraries for architecture
  • Loading branch information
rf152 authored Dec 16, 2022
2 parents 9b7aae6 + 825dfa8 commit cf16d35
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ mkdir "$INSTALL_DIR"
mkdir "$LIB_DIR"
mkdir "$BIN_DIR"

cp lib/ndi/* "$LIB_DIR"
if [ $(uname -m) == "aarch64" ]; then
cp lib64/ndi/* "$LIB_DIR"
else
cp lib32/ndi/* "$LIB_DIR"
fi

cp build/src/raspindi "$BIN_DIR"
cp build/src/libndioutput.so "$LIB_DIR"
Expand Down

0 comments on commit cf16d35

Please sign in to comment.