Skip to content

Commit

Permalink
Merge pull request #161 from sloriot/debian-openmesh
Browse files Browse the repository at this point in the history
manually install OpenMesh 11
  • Loading branch information
sloriot committed Sep 3, 2024
2 parents d981ba4 + 63cdd79 commit 1ed8643
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion Debian-testing/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,20 @@ RUN apt-get clean && apt-get update && apt-get install -y \
qt6-declarative-dev \
lsb-release \
libvtk9-dev vtk9 \
nlohmann-json3-dev
nlohmann-json3-dev \
wget

#OpenMesh
RUN wget https://www.graphics.rwth-aachen.de/media/openmesh_static/Releases/11.0/OpenMesh-11.0.0.tar.gz && \
tar xf OpenMesh-11.0.0.tar.gz && \
cd OpenMesh-11.0.0/ && \
mkdir build && \
cd build && \
cmake -DCMAKE_BUILD_TYPE=Release .. && \
make

ENV OpenMesh_DIR=/OpenMesh-11.0.0/build



ENV CGAL_TEST_PLATFORM="Debian-Testing"
Expand Down

0 comments on commit 1ed8643

Please sign in to comment.