mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-19 07:48:52 +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
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
export LIBRARY_PATH=/usr/lib/
|
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
|
make -j7
|
||||||
- name: "Package Netplay"
|
- name: "Package Netplay"
|
||||||
if: success()
|
if: success()
|
||||||
|
@ -387,7 +387,7 @@ jobs:
|
||||||
mkdir build
|
mkdir build
|
||||||
export LD_LIBRARY_PATH=/usr/lib/
|
export LD_LIBRARY_PATH=/usr/lib/
|
||||||
cd build
|
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
|
make -j7
|
||||||
- name: "Package Playback"
|
- name: "Package Playback"
|
||||||
if: success()
|
if: success()
|
||||||
|
|
|
@ -6,10 +6,11 @@ CMAKE_FLAGS='-DLINUX_LOCAL_DEV=true'
|
||||||
# Build type
|
# Build type
|
||||||
if [ -z "$1" ]
|
if [ -z "$1" ]
|
||||||
then
|
then
|
||||||
|
# TODO: move this around, playback should be the secondary build
|
||||||
|
CMAKE_FLAGS+=" -DSLIPPI_PLAYBACK=false"
|
||||||
echo "Using Netplay build config"
|
echo "Using Netplay build config"
|
||||||
elif [ "$1" == "playback" ]
|
elif [ "$1" == "playback" ]
|
||||||
then
|
then
|
||||||
CMAKE_FLAGS+=" -DSLIPPI_PLAYBACK=true"
|
|
||||||
echo "Using Playback build config"
|
echo "Using Playback build config"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue