From f81715fd55c4fb6aea90145a7e1ac57349fae213 Mon Sep 17 00:00:00 2001 From: Cezary Czaplewski Date: Sat, 16 Feb 2013 07:10:05 +0100 Subject: [PATCH] prng and not prng_32 for gfortran --- source/unres/src_MD/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/unres/src_MD/CMakeLists.txt b/source/unres/src_MD/CMakeLists.txt index aeda483..a0353f4 100644 --- a/source/unres/src_MD/CMakeLists.txt +++ b/source/unres/src_MD/CMakeLists.txt @@ -87,6 +87,8 @@ elseif(Fortran_COMPILER_NAME STREQUAL "mpif90") set(UNRES_MD_SRC0 ${UNRES_MD_SRC0} prng.f ) elseif(Fortran_COMPILER_NAME STREQUAL "f95") set(UNRES_MD_SRC0 ${UNRES_MD_SRC0} prng.f ) +elseif(Fortran_COMPILER_NAME STREQUAL "gfortran") + set(UNRES_MD_SRC0 ${UNRES_MD_SRC0} prng.f ) else() set(UNRES_MD_SRC0 ${UNRES_MD_SRC0} prng_32.F ) endif (Fortran_COMPILER_NAME STREQUAL "ifort") -- 1.7.9.5