diff options
author | Brad King <brad.king@kitware.com> | 2010-01-13 17:12:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-01-13 17:12:39 (GMT) |
commit | 1e9f58e6057c812ceda827c22c8c3538c95ae0e6 (patch) | |
tree | 6a6b8f3bc455f63ba6d0222ef9eba1538d4d34fa /Modules/CMakeFortranCompilerId.F.in | |
parent | 9ef3f8e82036a28c4f0375ec65eb25864a5240ca (diff) | |
download | CMake-1e9f58e6057c812ceda827c22c8c3538c95ae0e6.zip CMake-1e9f58e6057c812ceda827c22c8c3538c95ae0e6.tar.gz CMake-1e9f58e6057c812ceda827c22c8c3538c95ae0e6.tar.bz2 |
Recognize the PathScale C/C++/Fortran compilers
Diffstat (limited to 'Modules/CMakeFortranCompilerId.F.in')
-rw-r--r-- | Modules/CMakeFortranCompilerId.F.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/CMakeFortranCompilerId.F.in b/Modules/CMakeFortranCompilerId.F.in index c92f127..107470c 100644 --- a/Modules/CMakeFortranCompilerId.F.in +++ b/Modules/CMakeFortranCompilerId.F.in @@ -8,6 +8,8 @@ PRINT *, 'INFO:compiler[SunPro]' #elif defined(__G95__) PRINT *, 'INFO:compiler[G95]' +#elif defined(__PATHSCALE__) + PRINT *, 'INFO:compiler[PathScale]' #elif defined(__GNUC__) PRINT *, 'INFO:compiler[GNU]' #elif defined(__IBMC__) |