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

Install glew and glut. #6117

Merged
merged 1 commit into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .ci/azure-pipelines/build/macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ steps:
# find the commit hash on a quick non-forced update too
fetchDepth: 10
- script: |
brew install cmake pkg-config boost eigen flann glew libusb qhull vtk glew qt5 libpcap libomp google-benchmark cjson
brew install cmake pkg-config boost eigen flann glew libusb qhull vtk glew freeglut qt5 libpcap libomp google-benchmark cjson
brew install brewsci/science/openni
git clone https://github.com/abseil/googletest.git $GOOGLE_TEST_DIR # the official endpoint changed to abseil/googletest
cd $GOOGLE_TEST_DIR && git checkout release-1.8.1
Expand Down
1 change: 1 addition & 0 deletions .dev/docker/env/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ RUN apt-get update \
libcjson-dev \
libflann-dev \
libglew-dev \
freeglut3-dev \
libgtest-dev \
libomp-dev \
libopenni-dev \
Expand Down
26 changes: 25 additions & 1 deletion .dev/docker/windows/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,30 @@ COPY $PLATFORM'-windows-rel.cmake' 'c:\vcpkg\triplets\'$PLATFORM'-windows-rel.cm

RUN cd .\vcpkg; `
.\bootstrap-vcpkg.bat; `
.\vcpkg install boost-accumulators boost-asio boost-algorithm boost-filesystem boost-format boost-graph boost-interprocess boost-iostreams boost-math boost-ptr-container boost-signals2 boost-sort boost-uuid boost-cmake flann eigen3 qhull vtk[qt,opengl] gtest benchmark openni2 cjson `
.\vcpkg install `
boost-accumulators `
boost-asio `
boost-algorithm `
boost-filesystem `
boost-format `
boost-graph `
boost-interprocess `
boost-iostreams `
boost-math `
boost-ptr-container `
boost-signals2 `
boost-sort `
boost-uuid `
boost-cmake `
flann `
eigen3 `
qhull `
glew `
freeglut `
vtk[qt,opengl] `
gtest `
benchmark `
openni2 `
cjson `
--triplet $Env:PLATFORM-windows-rel --host-triplet $Env:PLATFORM-windows-rel --clean-after-build --x-buildtrees-root=C:\b;

Loading