mirror of
https://github.com/yuzu-emu/build-environments
synced 2024-11-22 16:43:43 +00:00
Merge pull request #22 from lat9nq/conan-boost
linux-fresh: Install Boost through Conan
This commit is contained in:
commit
b2661419ef
1 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,6 @@ RUN useradd -m -u 1027 -s /bin/bash yuzu && \
|
|||
libavcodec-dev \
|
||||
libavutil-dev \
|
||||
libswscale-dev \
|
||||
libboost-all-dev \
|
||||
liblz4-dev \
|
||||
libopus-dev \
|
||||
libsdl2-dev \
|
||||
|
@ -38,6 +37,7 @@ RUN apt-get clean autoclean && \
|
|||
apt-get autoremove --yes && \
|
||||
rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log
|
||||
USER 1027
|
||||
RUN conan install catch2/2.13.0@ -s compiler.libcxx=libstdc++11 --build=missing && \
|
||||
RUN conan install boost/1.73.0@ -s compiler.libcxx=libstdc++11 --build=missing && \
|
||||
conan install catch2/2.13.0@ -s compiler.libcxx=libstdc++11 --build=missing && \
|
||||
conan install fmt/7.1.2@ -s compiler.libcxx=libstdc++11 --build=missing && \
|
||||
conan install nlohmann_json/3.9.1@ -s compiler.libcxx=libstdc++11 --build=missing
|
||||
|
|
Loading…
Reference in a new issue