Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

manually install OpenMesh 11 #161

Merged
merged 3 commits into from
Sep 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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