From: <ai...@us...> - 2009-10-26 21:56:50
|
Revision: 10554 http://plplot.svn.sourceforge.net/plplot/?rev=10554&view=rev Author: airwin Date: 2009-10-26 21:56:44 +0000 (Mon, 26 Oct 2009) Log Message: ----------- Put F95_MOD_DIR variable in the cache so that it can be modified by the user. Modified Paths: -------------- trunk/cmake/modules/fortran.cmake Modified: trunk/cmake/modules/fortran.cmake =================================================================== --- trunk/cmake/modules/fortran.cmake 2009-10-26 17:05:13 UTC (rev 10553) +++ trunk/cmake/modules/fortran.cmake 2009-10-26 21:56:44 UTC (rev 10554) @@ -63,7 +63,9 @@ endif(ENABLE_f95 AND NOT CMAKE_Fortran_COMPILER_SUPPORTS_F90) # Set installation location for f95 modules. - set(F95_MOD_DIR ${LIB_DIR}/fortran/modules/${PACKAGE}) + set(F95_MOD_DIR ${LIB_DIR}/fortran/modules/${PACKAGE} + CACHE PATH "installation location for f95 modules" + ) # Check if f77/f95 style command line parsing is possible include(TestF77CmdLine) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |