diff options
author | Brad King <brad.king@kitware.com> | 2009-08-06 11:53:32 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-08-06 11:53:32 (GMT) |
commit | 8dd02cb78db9337cfdc5491f3e03a8891b398478 (patch) | |
tree | 3020b760e3073d5b2cd7fcf03d41b2cc7a9a7218 /Modules/FortranCInterface | |
parent | deb0db9af804a078d21dd97581880317389df661 (diff) | |
download | CMake-8dd02cb78db9337cfdc5491f3e03a8891b398478.zip CMake-8dd02cb78db9337cfdc5491f3e03a8891b398478.tar.gz CMake-8dd02cb78db9337cfdc5491f3e03a8891b398478.tar.bz2 |
Sort FortranCInterface global mangling symbols
This just cleans up the list ordering so more entries can be added while
keeping everything organized.
Diffstat (limited to 'Modules/FortranCInterface')
-rw-r--r-- | Modules/FortranCInterface/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/FortranCInterface/CMakeLists.txt b/Modules/FortranCInterface/CMakeLists.txt index 3ebfeb0..a1a6b46 100644 --- a/Modules/FortranCInterface/CMakeLists.txt +++ b/Modules/FortranCInterface/CMakeLists.txt @@ -11,10 +11,10 @@ int main() { return 0; } # List manglings of global symbol names to try. set(global_symbols - my_sub_ # GNU, Intel, HP, SunPro, MIPSpro my_sub # VisualAge - mysub_ # GNU, Intel, HP, SunPro, MIPSpro + my_sub_ # GNU, Intel, HP, SunPro, MIPSpro mysub # VisualAge + mysub_ # GNU, Intel, HP, SunPro, MIPSpro ${FortranCInterface_GLOBAL_SYMBOLS} ) list(REMOVE_DUPLICATES global_symbols) |