Skip to content

Commit

Permalink
try this.
Browse files Browse the repository at this point in the history
  • Loading branch information
CusiniM committed Jun 26, 2024
1 parent 70edb66 commit 54101b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions host-configs/environment.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ set(MPI_Fortran_COMPILER "$ENV{MPIFC}" CACHE PATH "" FORCE)
set(MPIEXEC_EXECUTABLE "$ENV{MPIEXEC}" CACHE PATH "" FORCE)

message(STATUS "BLAS_LIBRARIES will be set to $ENV{BLAS_LIBRARIES}")
if($ENV{BLAS_LIBRARIES})
if(ENV{BLAS_LIBRARIES})
set(BLAS_LIBRARIES "$ENV{BLAS_LIBRARIES}" CACHE PATH "" FORCE)
message(STATUS "BLAS_LIBRARIES is set to ${BLAS_LIBRARIES}")
else()
message(STATUS "BLAS_LIBRARIES is not set")
endif()

message(STATUS "LAPACK_LIBRARIES will be set to $ENV{LAPACK_LIBRARIES}")
if($ENV{LAPACK_LIBRARIES})
if(DEFINED ENV{LAPACK_LIBRARIES})
set(LAPACK_LIBRARIES "$ENV{LAPACK_LIBRARIES}" CACHE PATH "" FORCE)
message(STATUS "LAPACK_LIBRARIES is set to ${LAPACK_LIBRARIES}")
else()
Expand Down

0 comments on commit 54101b4

Please sign in to comment.