Skip to content
Snippets Groups Projects

Meson

Open Nicolas Werner requested to merge meson2 into master
Compare and
62 files
+ 3818
16
Compare changes
  • Side-by-side
  • Inline
Files
62
+ 12
0
FROM ubuntu:22.04
# wget needs recommends
RUN apt-get update \
&& apt-get install -y software-properties-common \
&& add-apt-repository ppa:ubuntu-toolchain-r/test -y \
&& apt-get update && apt-get -y install --no-install-recommends build-essential ninja-build qtbase5-dev qtdeclarative5-dev qttools5-dev qtmultimedia5-dev qtscript5-dev qtquickcontrols2-5-dev libqt5svg5-dev liblmdb-dev libgl1-mesa-dev libssl-dev git ccache pkg-config libsecret-1-dev cmake python3-pip asciidoc xsltproc \
&& apt-get -y install wget \
&& pip3 install meson \
&& /usr/sbin/update-ccache-symlinks \
&& apt-get clean
Loading