mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
(Linux) Added checks that SDL is configured with PipeWire support when building the AppImage.
This commit is contained in:
parent
960677d9b1
commit
f5b4356444
|
@ -84,6 +84,13 @@ EOF
|
|||
mkdir build
|
||||
cd build
|
||||
cmake -DCMAKE_BUILD_TYPE=Release -S .. -B .
|
||||
|
||||
if [ $(grep PKG_PIPEWIRE_VERSION:INTERNAL= CMakeCache.txt) = "PKG_PIPEWIRE_VERSION:INTERNAL=" ]; then
|
||||
echo
|
||||
echo -e "The SDL library is not configured with PipeWire support, aborting."
|
||||
exit
|
||||
fi
|
||||
|
||||
make -j${JOBS}
|
||||
cd ../../..
|
||||
else
|
||||
|
|
|
@ -80,6 +80,13 @@ EOF
|
|||
mkdir build
|
||||
cd build
|
||||
cmake -DCMAKE_BUILD_TYPE=Release -S .. -B .
|
||||
|
||||
if [ $(grep PKG_PIPEWIRE_VERSION:INTERNAL= CMakeCache.txt) = "PKG_PIPEWIRE_VERSION:INTERNAL=" ]; then
|
||||
echo
|
||||
echo -e "The SDL library is not configured with PipeWire support, aborting."
|
||||
exit
|
||||
fi
|
||||
|
||||
make -j${JOBS}
|
||||
cd ../../..
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue