From 0ea43ee12845fa16a029d1ed7154b331a8d66074 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 29 Jul 2009 16:07:27 -0400 Subject: Set CMAKE__VERBOSE_FLAG variables for Intel We set the variables to contain "-v", the verbose front-end output option for Intel compilers. This enables detection of implicit link libraries and directories for these compilers. --- Modules/Compiler/Intel-C.cmake | 1 + Modules/Compiler/Intel-CXX.cmake | 1 + Modules/Compiler/Intel-Fortran.cmake | 1 + 3 files changed, 3 insertions(+) create mode 100644 Modules/Compiler/Intel-C.cmake create mode 100644 Modules/Compiler/Intel-CXX.cmake create mode 100644 Modules/Compiler/Intel-Fortran.cmake diff --git a/Modules/Compiler/Intel-C.cmake b/Modules/Compiler/Intel-C.cmake new file mode 100644 index 0000000..abf384a --- /dev/null +++ b/Modules/Compiler/Intel-C.cmake @@ -0,0 +1 @@ +SET(CMAKE_C_VERBOSE_FLAG "-v") diff --git a/Modules/Compiler/Intel-CXX.cmake b/Modules/Compiler/Intel-CXX.cmake new file mode 100644 index 0000000..f3c6b5f --- /dev/null +++ b/Modules/Compiler/Intel-CXX.cmake @@ -0,0 +1 @@ +SET(CMAKE_CXX_VERBOSE_FLAG "-v") diff --git a/Modules/Compiler/Intel-Fortran.cmake b/Modules/Compiler/Intel-Fortran.cmake new file mode 100644 index 0000000..7f7c128 --- /dev/null +++ b/Modules/Compiler/Intel-Fortran.cmake @@ -0,0 +1 @@ +SET(CMAKE_Fortran_VERBOSE_FLAG "-v") -- cgit v0.12