Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN apt-get update && \

# #### Install CMake v3.22
WORKDIR /var/tmp/build/cmake
RUN curl -fsSL https://github.com/Kitware/cmake/archive/v3.22.3.tar.gz | \
RUN curl -fsSL https://github.com/Kitware/cmake/archive/v3.31.12.tar.gz | \
tar -xzf - --strip-components=1 && \
./bootstrap && make -j ${NCPU:-4} && make install

Expand Down
2 changes: 1 addition & 1 deletion doc/packaging.md
Original file line number Diff line number Diff line change
Expand Up @@ -1032,7 +1032,7 @@ sudo apt-get --no-install-recommends install -y apt-transport-https apt-utils \
#### Install CMake v3.22

mkdir -p $HOME/Downloads/cmake && cd $HOME/Downloads/cmake curl -fsSL
https://github.com/Kitware/cmake/archive/v3.22.3.tar.gz | \
https://github.com/Kitware/cmake/archive/v3.31.12.tar.gz | \
tar -xzf - --strip-components=1 && \
./bootstrap && make -j ${NCPU:-4} && sudo make install

Expand Down
Loading