diff options
author | Brad King <brad.king@kitware.com> | 2010-12-09 22:15:48 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-12-09 23:12:42 (GMT) |
commit | 09d1c1080def2b060397469240f184b3fa5358d9 (patch) | |
tree | b7546008436042043a02ebfc762c6661ae0317c8 /Modules/FortranCInterface | |
parent | af2ad90991faea2be0dfe62e456794f46758c92a (diff) | |
download | CMake-09d1c1080def2b060397469240f184b3fa5358d9.zip CMake-09d1c1080def2b060397469240f184b3fa5358d9.tar.gz CMake-09d1c1080def2b060397469240f184b3fa5358d9.tar.bz2 |
FortranCInterface: Recognize NAG Fortran module symbols
Diffstat (limited to 'Modules/FortranCInterface')
-rw-r--r-- | Modules/FortranCInterface/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/FortranCInterface/CMakeLists.txt b/Modules/FortranCInterface/CMakeLists.txt index 18014af..4bcaae9 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) |