Skip to content

Commit

Permalink
Merge pull request PointCloudLibrary#6117 from larshg/InstallFreeGlut
Browse files Browse the repository at this point in the history
Install glew and glut.
  • Loading branch information
larshg authored Aug 27, 2024
2 parents 6f1105a + 5e84969 commit 4900f66
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
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;

0 comments on commit 4900f66

Please sign in to comment.