mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-26 12:16:20 +00:00
fix zstd linking
This commit is contained in:
parent
9ae05ea2dc
commit
74221c16c8
3 changed files with 4 additions and 1 deletions
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
@ -320,6 +320,7 @@ jobs:
|
|||
run: |
|
||||
mkdir build
|
||||
cd build
|
||||
export LIBRARY_PATH=/usr/lib/
|
||||
cmake -DQt5_DIR=$(brew --prefix qt)/lib/cmake/Qt5 -DENABLE_NOGUI=false ..
|
||||
make -j7
|
||||
- name: "Package Netplay"
|
||||
|
@ -384,6 +385,7 @@ jobs:
|
|||
working-directory: ${{ github.workspace }}
|
||||
run: |
|
||||
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 ..
|
||||
make -j7
|
||||
|
|
|
@ -626,7 +626,7 @@ else()
|
|||
endif()
|
||||
|
||||
pkg_search_module(ZSTD QUIET libzstd)
|
||||
if(ZSTD_FOUND)
|
||||
if(ZSTD_FOUND AND NOT APPLE)
|
||||
message(STATUS "Using shared zstd")
|
||||
else()
|
||||
check_vendoring_approved(zstd)
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
#include "VideoCommon/IconsFontAwesome4.h"
|
||||
|
||||
extern std::unique_ptr<SlippiPlaybackStatus> g_playbackStatus;
|
||||
extern template IMGUI_API float ImGui::SliderCalcRatioFromValueT<int, float>(ImGuiDataType data_type, int v, int v_min, int v_max, float power, float linear_zero_pos);
|
||||
#endif
|
||||
|
||||
namespace OSD
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue