mirror of
https://github.com/yuzu-emu/build-environments.git
synced 2024-11-22 21:15:37 +01:00
Add new system libraries and install some additional libraries through conan
This commit is contained in:
parent
5ec9c4a00f
commit
4fe0ebbd8f
@ -4,16 +4,27 @@ RUN useradd -m -s /bin/bash yuzu && \
|
|||||||
DEBIAN_FRONTEND=noninteractive apt-get update && apt-get -y full-upgrade && \
|
DEBIAN_FRONTEND=noninteractive apt-get update && apt-get -y full-upgrade && \
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
|
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
|
||||||
build-essential \
|
build-essential \
|
||||||
|
libboost-all-dev \
|
||||||
libsdl2-dev \
|
libsdl2-dev \
|
||||||
libssl-dev \
|
libssl-dev \
|
||||||
|
libopus-dev \
|
||||||
|
libzstd-dev \
|
||||||
python \
|
python \
|
||||||
|
python3-pip \
|
||||||
qtbase5-dev \
|
qtbase5-dev \
|
||||||
qtbase5-private-dev \
|
qtbase5-private-dev \
|
||||||
qtwebengine5-dev \
|
qtwebengine5-dev \
|
||||||
libqt5opengl5-dev \
|
libqt5opengl5-dev \
|
||||||
|
liblz4-dev \
|
||||||
|
zlib1g-dev \
|
||||||
wget \
|
wget \
|
||||||
git \
|
git \
|
||||||
ccache \
|
ccache \
|
||||||
cmake \
|
cmake \
|
||||||
ninja-build && \
|
ninja-build && \
|
||||||
|
pip3 install conan && \
|
||||||
apt-get clean autoclean && apt-get autoremove --yes && rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log
|
apt-get clean autoclean && apt-get autoremove --yes && rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log
|
||||||
|
USER yuzu
|
||||||
|
RUN conan install catch2/2.11.0@ && \
|
||||||
|
conan install fmt/6.2.0@ && \
|
||||||
|
conan install nlohmann_json/3.7.3@
|
||||||
|
Loading…
Reference in New Issue
Block a user