Skip to content
Snippets Groups Projects
Commit 6e24f050 authored by Lars Bilke's avatar Lars Bilke Committed by Dmitri Naumov
Browse files

cmake-format

parent 8776250e
No related branches found
No related tags found
No related merge requests found
...@@ -133,7 +133,7 @@ if(OGS_USE_PETSC) ...@@ -133,7 +133,7 @@ if(OGS_USE_PETSC)
set(PETSC_EXECUTABLE_RUNS YES) set(PETSC_EXECUTABLE_RUNS YES)
endif() endif()
# apple clang 15 requires newer petsc, see # apple clang 15 requires newer petsc, see
# https://www.mail-archive.com/petsc-users@mcs.anl.gov/msg46980.html # https://www.mail-archive.com/petsc-users@mcs.anl.gov/msg46980.html
if(APPLE AND ${CMAKE_CXX_COMPILER_VERSION} GREATER_EQUAL 15) if(APPLE AND ${CMAKE_CXX_COMPILER_VERSION} GREATER_EQUAL 15)
set(ogs.minimum_version.petsc 3.20.5) set(ogs.minimum_version.petsc 3.20.5)
...@@ -256,8 +256,10 @@ if(NOT ZLIB_FOUND) ...@@ -256,8 +256,10 @@ if(NOT ZLIB_FOUND)
if(CMAKE_BUILD_TYPE STREQUAL "Debug") if(CMAKE_BUILD_TYPE STREQUAL "Debug")
set(_zlib_debug_postfix "d") set(_zlib_debug_postfix "d")
endif() endif()
# Remove zlib dll and corresponding lib, ZLIB_USE_STATIC_LIBS sometimes does not work # Remove zlib dll and corresponding lib, ZLIB_USE_STATIC_LIBS sometimes
file(REMOVE # does not work
file(
REMOVE
${build_dir_ZLIB}/${CMAKE_INSTALL_LIBDIR}/zlib${_zlib_debug_postfix}${CMAKE_STATIC_LIBRARY_SUFFIX} ${build_dir_ZLIB}/${CMAKE_INSTALL_LIBDIR}/zlib${_zlib_debug_postfix}${CMAKE_STATIC_LIBRARY_SUFFIX}
${build_dir_ZLIB}/${CMAKE_INSTALL_BINDIR}/zlib${_zlib_debug_postfix}${CMAKE_SHARED_LIBRARY_SUFFIX} ${build_dir_ZLIB}/${CMAKE_INSTALL_BINDIR}/zlib${_zlib_debug_postfix}${CMAKE_SHARED_LIBRARY_SUFFIX}
) )
...@@ -265,7 +267,9 @@ if(NOT ZLIB_FOUND) ...@@ -265,7 +267,9 @@ if(NOT ZLIB_FOUND)
set(ZLIB_USE_STATIC_LIBS "ON") set(ZLIB_USE_STATIC_LIBS "ON")
set(ZLIB_ROOT ${build_dir_ZLIB}) set(ZLIB_ROOT ${build_dir_ZLIB})
# Force local zlib build, found netcdf-installed zlib sometimes # Force local zlib build, found netcdf-installed zlib sometimes
set(ZLIB_LIBRARIES ${build_dir_ZLIB}/${CMAKE_INSTALL_LIBDIR}/zlibstatic${_zlib_debug_postfix}${CMAKE_STATIC_LIBRARY_SUFFIX}) set(ZLIB_LIBRARIES
${build_dir_ZLIB}/${CMAKE_INSTALL_LIBDIR}/zlibstatic${_zlib_debug_postfix}${CMAKE_STATIC_LIBRARY_SUFFIX}
)
endif() endif()
set(_EXT_LIBS ${_EXT_LIBS} ZLIB CACHE INTERNAL "") set(_EXT_LIBS ${_EXT_LIBS} ZLIB CACHE INTERNAL "")
BuildExternalProject_find_package(ZLIB) BuildExternalProject_find_package(ZLIB)
...@@ -302,8 +306,8 @@ if(WIN32 OR HDF5_USE_STATIC_LIBRARIES) ...@@ -302,8 +306,8 @@ if(WIN32 OR HDF5_USE_STATIC_LIBRARIES)
list(APPEND _hdf5_options "-DBUILD_SHARED_LIBS=OFF") list(APPEND _hdf5_options "-DBUILD_SHARED_LIBS=OFF")
endif() endif()
# With apple clang 15 there are errors when the cpm compiled hdf5 # With apple clang 15 there are errors when the cpm compiled hdf5 has a
# has a different version than the one bundled with vtk, see # different version than the one bundled with vtk, see
# https://gitlab.kitware.com/vtk/vtk/-/issues/19232. # https://gitlab.kitware.com/vtk/vtk/-/issues/19232.
if(APPLE AND ${CMAKE_CXX_COMPILER_VERSION} GREATER_EQUAL 15) if(APPLE AND ${CMAKE_CXX_COMPILER_VERSION} GREATER_EQUAL 15)
set(ogs.tested_version.hdf5 1.10.7) set(ogs.tested_version.hdf5 1.10.7)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment