fixed CMake variable typo
authorDawid Jagieła <lightnir@chem.univ.gda.pl>
Tue, 14 Oct 2014 22:29:43 +0000 (00:29 +0200)
committerDawid Jagieła <lightnir@chem.univ.gda.pl>
Tue, 14 Oct 2014 22:29:43 +0000 (00:29 +0200)
source/unres/src_MD-M/CMakeLists.txt

index f88fb4f..46758e3 100644 (file)
@@ -266,10 +266,10 @@ set_property(SOURCE proc_proc.c PROPERTY COMPILE_DEFINITIONS "SGI" )
 #========================================
 if(UNRES_WITH_MPI) 
   # binary with mpi
-  set(UNRES_BIN "unres_${Fortran_COMPILER_NAME}_MPICH_${UNRES_FF}.exe")
+  set(UNRES_BIN "unres_${Fortran_COMPILER_NAME}_MPICH_${UNRES_MD_FF}.exe")
 else(UNRES_WITH_MPI)
   # binary without mpi
-  set(UNRES_BIN "unres_${Fortran_COMPILER_NAME}_single_${UNRES_FF}.exe")
+  set(UNRES_BIN "unres_${Fortran_COMPILER_NAME}_single_${UNRES_MD_FF}.exe")
 endif(UNRES_WITH_MPI)  
 
 #=========================================