mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-26 12:03:36 +00:00
fix(Dockerfile): install libglm-dev to satisfy meson glm dependency
meson failed with a runtime dependency error """ 4J.Render/meson.build:4:7: ERROR: Dependency "glm" not found, tried pkgconfig and cmake """ add libglm-dev so meson can find glm Signed-off-by: ViniciusCruzMoura <contato.cruz.moura@gmail.com>
This commit is contained in:
parent
1e94adb190
commit
223541b009
|
|
@ -13,6 +13,7 @@ RUN apt-get update \
|
|||
ninja-build \
|
||||
libsdl2-dev \
|
||||
libgl-dev \
|
||||
libglm-dev \
|
||||
libglu1-mesa-dev \
|
||||
libpthread-stubs0-dev \
|
||||
&& update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-15 100 \
|
||||
|
|
|
|||
Loading…
Reference in a new issue