diff options
author | Brad King <brad.king@kitware.com> | 2009-08-24 17:07:43 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-08-24 17:07:43 (GMT) |
commit | 6e7020b452160865e9d546bb9ce581a49f3532ce (patch) | |
tree | 06a6fbf0cf029f314b9599ad8b0338ed1c83ec98 | |
parent | e6734068ef5dc339dd351f2d8efdf5a73f4cfe71 (diff) | |
download | CMake-6e7020b452160865e9d546bb9ce581a49f3532ce.zip CMake-6e7020b452160865e9d546bb9ce581a49f3532ce.tar.gz CMake-6e7020b452160865e9d546bb9ce581a49f3532ce.tar.bz2 |
Enforce FortranCInterface_VERIFY in Fortran test
This removes the QUIET option from FortranCInterface_VERIFY in the
Fortran test to really test the detected interface everywhere.
-rw-r--r-- | Tests/Fortran/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/Fortran/CMakeLists.txt b/Tests/Fortran/CMakeLists.txt index 5f58f77..226c63c 100644 --- a/Tests/Fortran/CMakeLists.txt +++ b/Tests/Fortran/CMakeLists.txt @@ -14,8 +14,8 @@ function(test_fortran_c_interface_module) message(STATUS "Testing FortranCInterface module") # test the C to Fortran interface module include(FortranCInterface) - FortranCInterface_VERIFY(QUIET) - FortranCInterface_VERIFY(QUIET CXX) + FortranCInterface_VERIFY() + FortranCInterface_VERIFY(CXX) if(CMAKE_Fortran_COMPILER_SUPPORTS_F90) if(NOT CMAKE_Fortran_COMPILER_ID MATCHES "SunPro|MIPSpro") set(module_expected 1) |