mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-18 23:42:05 +00:00
Update playback flag
This commit is contained in:
parent
b9a738842d
commit
87e15f684b
2 changed files with 4 additions and 3 deletions
4
.github/workflows/main.yml
vendored
4
.github/workflows/main.yml
vendored
|
@ -321,7 +321,7 @@ jobs:
|
|||
mkdir build
|
||||
cd build
|
||||
export LIBRARY_PATH=/usr/lib/
|
||||
cmake -DQt5_DIR=$(brew --prefix qt)/lib/cmake/Qt5 -DENABLE_NOGUI=false ..
|
||||
cmake -DSLIPPI_PLAYBACK=false -DQt5_DIR=$(brew --prefix qt)/lib/cmake/Qt5 -DENABLE_NOGUI=false ..
|
||||
make -j7
|
||||
- name: "Package Netplay"
|
||||
if: success()
|
||||
|
@ -387,7 +387,7 @@ jobs:
|
|||
mkdir build
|
||||
export LD_LIBRARY_PATH=/usr/lib/
|
||||
cd build
|
||||
cmake -DIS_PLAYBACK=true -DQt5_DIR=$(brew --prefix qt)/lib/cmake/Qt5 -DENABLE_NOGUI=false ..
|
||||
cmake -DQt5_DIR=$(brew --prefix qt)/lib/cmake/Qt5 -DENABLE_NOGUI=false ..
|
||||
make -j7
|
||||
- name: "Package Playback"
|
||||
if: success()
|
||||
|
|
|
@ -6,10 +6,11 @@ CMAKE_FLAGS='-DLINUX_LOCAL_DEV=true'
|
|||
# Build type
|
||||
if [ -z "$1" ]
|
||||
then
|
||||
# TODO: move this around, playback should be the secondary build
|
||||
CMAKE_FLAGS+=" -DSLIPPI_PLAYBACK=false"
|
||||
echo "Using Netplay build config"
|
||||
elif [ "$1" == "playback" ]
|
||||
then
|
||||
CMAKE_FLAGS+=" -DSLIPPI_PLAYBACK=true"
|
||||
echo "Using Playback build config"
|
||||
fi
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue