Files
UltraGrid/.github/scripts/Windows/install_spout.sh
Martin Pulec 96b9ff511c Win CI scripts: create /usr/local/* if not
Ensure that /usr/local/{bin,include,lib} are created in scrips that copy
to that.

This is not problem for the CI because `.github/scripts/Windows/prepare_msys.sh`
already creates them but the scripts are standalone installers and it
can be run independently by a developer to install the particular dependency.
2023-04-11 13:02:24 +02:00

10 lines
338 B
Bash
Executable File

#!/bin/sh -eux
# Install SPOUT
git clone --depth 1 https://github.com/leadedge/Spout2.git
mkdir -p /usr/local/bin /usr/local/include /usr/local/lib
cp Spout2/BUILD/Binaries/x64/SpoutLibrary.dll /usr/local/bin
cp Spout2/BUILD/Binaries/x64/SpoutLibrary.lib /usr/local/lib
cp Spout2/SPOUTSDK/SpoutLibrary/SpoutLibrary.h /usr/local/include