File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,14 @@ build() {(
77 git clone --depth 1 https://github.com/leadedge/Spout2.git
88 cd Spout2
99 /c/Program\ Files/CMake/bin/cmake.exe -Bbuild2 . # ./BUILD already exists
10- /c/Program\ Files/CMake/bin/cmake.exe --build build2 -j " $( nproc) "
10+ /c/Program\ Files/CMake/bin/cmake.exe --build build2 --config Release \
11+ -j " $( nproc) "
1112)}
1213
1314install () {(
1415 mkdir -p /usr/local/bin /usr/local/include /usr/local/lib
15- cp /c/Spout2/build2/Binaries/x64 /SpoutLibrary.dll /usr/local/bin/
16- cp /c/Spout2/build2/Binaries/x64 /SpoutLibrary.lib /usr/local/lib/
16+ cp /c/Spout2/build2/bin/Release /SpoutLibrary.dll /usr/local/bin/
17+ cp /c/Spout2/build2/lib/Release /SpoutLibrary.lib /usr/local/lib/
1718 cp /c/Spout2/SPOUTSDK/SpoutLibrary/SpoutLibrary.h /usr/local/include/
1819)}
1920
Original file line number Diff line number Diff line change @@ -3034,6 +3034,7 @@ AC_ARG_ENABLE(spout,
30343034 )
30353035
30363036FOUND_SPOUT=no
3037+ missing_item="OpenGL"
30373038if test $system = Windows && test "$spout_req" != no && test "$OPENGL" = yes
30383039then
30393040 AC_LANG_PUSH ( [ C++] )
@@ -3043,6 +3044,7 @@ then
30433044 [ [ auto *spout = GetSpout();] ] ) ] ,
30443045 FOUND_SPOUT=yes , FOUND_SPOUT=no )
30453046 LIBS=$SAVED_LIBS
3047+ missing_item="SpoutLibrary.h"
30463048 AC_LANG_POP ( [ C++] )
30473049fi
30483050
@@ -3053,7 +3055,7 @@ then
30533055 spout=yes
30543056fi
30553057
3056- ENSURE_FEATURE_PRESENT([ $spout_req] , [ $spout] , [ Could not found Spout dependencies! ] )
3058+ ENSURE_FEATURE_PRESENT([ $spout_req] , [ $spout] , [ Could not found Spout dependencies: ${missing_item?} ] )
30573059
30583060# -------------------------------------------------------------------------------------------------
30593061# MCU-like video mixer
You can’t perform that action at this time.
0 commit comments