summaryrefslogtreecommitdiffstats
path: root/Modules/FortranCInterface
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-08-06 11:53:32 (GMT)
committerBrad King <brad.king@kitware.com>2009-08-06 11:53:32 (GMT)
commit8dd02cb78db9337cfdc5491f3e03a8891b398478 (patch)
tree3020b760e3073d5b2cd7fcf03d41b2cc7a9a7218 /Modules/FortranCInterface
parentdeb0db9af804a078d21dd97581880317389df661 (diff)
downloadCMake-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.txt4
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)