From 09d1c1080def2b060397469240f184b3fa5358d9 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 9 Dec 2010 17:15:48 -0500 Subject: [PATCH] FortranCInterface: Recognize NAG Fortran module symbols --- Modules/FortranCInterface/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Modules/FortranCInterface/CMakeLists.txt b/Modules/FortranCInterface/CMakeLists.txt index 18014af5a..4bcaae916 100644 --- a/Modules/FortranCInterface/CMakeLists.txt +++ b/Modules/FortranCInterface/CMakeLists.txt @@ -45,10 +45,12 @@ set(module_symbols my_module_mp_my_sub_ # Intel MY_MODULE_mp_MY_SUB # Intel on Windows my_module_my_sub_ # PGI + my_module_MP_my_sub # NAG mymodule$mysub # HP mymodule_mp_mysub_ # Intel MYMODULE_mp_MYSUB # Intel on Windows mymodule_mysub_ # PGI + mymodule_MP_mysub # NAG ${FortranCInterface_MODULE_SYMBOLS} ) list(REMOVE_DUPLICATES module_symbols)