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/CMakeCCompilerId.c.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/CMakeCCompilerId.c.in')
-rw-r--r-- | Modules/CMakeCCompilerId.c.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/CMakeCCompilerId.c.in b/Modules/CMakeCCompilerId.c.in index 6cd6437..5d004c7 100644 --- a/Modules/CMakeCCompilerId.c.in +++ b/Modules/CMakeCCompilerId.c.in @@ -36,6 +36,9 @@ #elif defined(__PGI) # define COMPILER_ID "PGI" +#elif defined(__PATHSCALE__) +# define COMPILER_ID "PathScale" + #elif defined(__GNUC__) # define COMPILER_ID "GNU" |