Skip to content
Open
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 CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.12)
cmake_minimum_required(VERSION 3.16)

################################################################################
# Define our package information.
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ RUN apt-get update && DEBIAN_FRONTEND=nonitneractive apt-get install -y mpich
RUN apt-get update && apt-get install -y openssh-client
RUN apt-get update && apt-get install -y openssh-server

# Fetch and install CMake 3.15 as required by Intel-QS build process.
WORKDIR swpkgs/cmake3.15
RUN wget "https://github.com/Kitware/CMake/releases/download/v3.15.2/cmake-3.15.2-Linux-x86_64.tar.gz"
RUN tar -xzf cmake-3.15.2-Linux-x86_64.tar.gz -C /usr/local/ --strip-components=1
# Fetch and install CMake 3.16
WORKDIR swpkgs/cmake3.16.0
RUN wget "https://github.com/Kitware/CMake/releases/download/v3.16.0/cmake-3.16.0-Linux-x86_64.tar.gz"
RUN tar -xzf cmake-3.16.0-Linux-x86_64.tar.gz -C /usr/local/ --strip-components=1

# Fetch and install the Intel MKL libraries required for building the Intel-QS simulator.
WORKDIR swpkgs/mkl
Expand Down
2 changes: 1 addition & 1 deletion cmake/gtest.cmake.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 2.8.2)
cmake_minimum_required(VERSION 3.16)

project(googletest-download NONE)

Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

if (IqsNoise)
# Download and unpack eigen library at configure time.
cmake_minimum_required(VERSION 3.12.0)
cmake_minimum_required(VERSION 3.16)
include(ExternalProject)
ExternalProject_Add(deps-eigen
GIT_REPOSITORY https://gitlab.com/libeigen/eigen.git
Expand Down
2 changes: 1 addition & 1 deletion util/BigMPI/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 2.6.4 FATAL_ERROR)
cmake_minimum_required(VERSION 3.16 FATAL_ERROR)

set(PACKAGE_NAME BigMPI)
find_package(MPI)
Expand Down