When trying to build APBS 3.4.1 with cmake 3.30, it throws the following error while configuring:
-- Building GEOFLOW
CMake Warning (dev) at build/_deps/geoflow-src/CMakeLists.txt:25 (find_package):
Policy CMP0167 is not set: The FindBoost module is removed. Run "cmake
--help-policy CMP0167" for policy details. Use the cmake_policy command to
set the policy and suppress this warning.
This warning is for project developers. Use -Wno-dev to suppress it.
-- Found Boost: /usr/lib/cmake/Boost-1.88.0/BoostConfig.cmake (found version "1.88.0")
CMake Warning (dev) at /usr/share/cmake/Modules/FetchContent.cmake:1373 (message):
The DOWNLOAD_EXTRACT_TIMESTAMP option was not given and policy CMP0135 is
not set. The policy's OLD behavior will be used. When using a URL
download, the timestamps of extracted files should preferably be that of
the time of extraction, otherwise code that depends on the extracted
contents might not be rebuilt if the URL changes. The OLD behavior
preserves the timestamps from the archive instead, but this is usually not
what you want. Update your project to the NEW behavior or specify the
DOWNLOAD_EXTRACT_TIMESTAMP option with a value of true to avoid this
robustness issue.
Call Stack (most recent call first):
build/_deps/geoflow-src/test/CMakeLists.txt:3 (FetchContent_Declare)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Error at build/_deps/googletest-src/CMakeLists.txt:4 (cmake_minimum_required):
Compatibility with CMake < 3.5 has been removed from CMake.
Update the VERSION argument <min> value. Or, use the <min>...<max> syntax
to tell CMake that the project requires at least <min> but has been updated
to work with policies introduced by <max> or earlier.
Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway.
-- Configuring incomplete, errors occurred!
As far as I can see, this is due to a dependency of geoflow_c on a very old version of googletest in test/CMakeLists.txt.
I will try to compile geoflow_c with the latest version to see if this dependency can be updated in place.
When trying to build APBS 3.4.1 with cmake 3.30, it throws the following error while configuring:
As far as I can see, this is due to a dependency of
geoflow_con a very old version ofgoogletestintest/CMakeLists.txt.I will try to compile
geoflow_cwith the latest version to see if this dependency can be updated in place.