diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-09-27 17:03:36 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-09-27 17:03:36 (GMT) |
commit | 80050d95419670098accdb17bec791840496321b (patch) | |
tree | bb1565ea34af8bb711b5799aac8270d7dec0f15e /Tests | |
parent | 016e0e52cb758267f1af945b55d2ac5383f4e226 (diff) | |
download | CMake-80050d95419670098accdb17bec791840496321b.zip CMake-80050d95419670098accdb17bec791840496321b.tar.gz CMake-80050d95419670098accdb17bec791840496321b.tar.bz2 |
clean up output of test and force verbose makefiles
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/Fortran/CMakeLists.txt | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Tests/Fortran/CMakeLists.txt b/Tests/Fortran/CMakeLists.txt index a7b5042..6d08f5e 100644 --- a/Tests/Fortran/CMakeLists.txt +++ b/Tests/Fortran/CMakeLists.txt @@ -1,12 +1,8 @@ PROJECT(testf Fortran) +SET(CMAKE_VERBOSE_MAKEFILE 1) MESSAGE("ENV_FLAGS = $ENV{FFLAGS}") MESSAGE("CMAKE_Fortran_COMPILER_INIT = ${CMAKE_Fortran_COMPILER_INIT}") MESSAGE("CMAKE_Fortran_COMPILER_FULLPATH = ${CMAKE_Fortran_COMPILER_FULLPATH}") MESSAGE("CMAKE_Fortran_COMPILER = ${CMAKE_Fortran_COMPILER}") MESSAGE("CMAKE_Fortran_FLAGS = ${CMAKE_Fortran_FLAGS}") -MESSAGE("All cmake variables:") -GET_CMAKE_PROPERTY(res VARIABLES) -FOREACH(var ${res}) - MESSAGE("${var}=\"${${var}}\"\n") -ENDFOREACH(var ${res}) ADD_EXECUTABLE(testf hello.f) |