Skip to content

Commit

Permalink
CI Win: build own Spout
Browse files Browse the repository at this point in the history
closes GH-352

It looks like the pre-build library BUILD/Binaries/x64/SpoutLibrary.dll
is no longer compatible with the headers in Git.

Pre-built library version is 2.007.010 while the latest version on GitHub
is Spout 2.007.012. When building Spout from sources, the referenced
issue no longer occurs. Also the libraries are not expected to be included
in the Git in future (leadedge/Spout2#103).
  • Loading branch information
MartinPulec committed Nov 6, 2023
1 parent 8b233cd commit b98b5ab
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/scripts/Windows/install_spout.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@
# Install SPOUT

git clone --depth 1 https://github.com/leadedge/Spout2.git
cd Spout2
/c/Program\ Files/CMake/bin/cmake.exe -Bbuild2 . # ./BUILD already exists
/c/Program\ Files/CMake/bin/cmake.exe --build build2 --parallel
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
cp build2/Binaries/x64/SpoutLibrary.dll /usr/local/bin
cp build2/Binaries/x64/SpoutLibrary.lib /usr/local/lib
cp SPOUTSDK/SpoutLibrary/SpoutLibrary.h /usr/local/include

0 comments on commit b98b5ab

Please sign in to comment.