From 45c515fb64857c3bfb3a6210100dfa4aad620bb5 Mon Sep 17 00:00:00 2001 From: Cezary Czaplewski Date: Sat, 16 Feb 2013 06:31:17 +0100 Subject: [PATCH] prng and not prng_32 for f95 --- 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 8f25ae4..aeda483 100644 --- a/source/unres/src_MD/CMakeLists.txt +++ b/source/unres/src_MD/CMakeLists.txt @@ -85,6 +85,8 @@ if(Fortran_COMPILER_NAME STREQUAL "ifort") set(UNRES_MD_SRC0 ${UNRES_MD_SRC0} prng.f ) 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 ) else() set(UNRES_MD_SRC0 ${UNRES_MD_SRC0} prng_32.F ) endif (Fortran_COMPILER_NAME STREQUAL "ifort") -- 1.7.9.5