diff options
author | Brad King <brad.king@kitware.com> | 2005-04-06 19:06:08 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-04-06 19:06:08 (GMT) |
commit | 1c4337d778bb726f7c32ecae29f79ffa39ba0a06 (patch) | |
tree | 53920dd113a72f627a8d1286dd419392d1ea89e3 /Tests/Fortran | |
parent | 6f95540ac771ae9f09c7aedb22ec1027ea3f15eb (diff) | |
download | CMake-1c4337d778bb726f7c32ecae29f79ffa39ba0a06.zip CMake-1c4337d778bb726f7c32ecae29f79ffa39ba0a06.tar.gz CMake-1c4337d778bb726f7c32ecae29f79ffa39ba0a06.tar.bz2 |
ENH: Removed CMAKE_GENERATOR_NEW now that the old unix makefile generator is never used.
Diffstat (limited to 'Tests/Fortran')
-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 57634cf..99132de 100644 --- a/Tests/Fortran/CMakeLists.txt +++ b/Tests/Fortran/CMakeLists.txt @@ -7,9 +7,9 @@ MESSAGE("CMAKE_Fortran_COMPILER = ${CMAKE_Fortran_COMPILER}") MESSAGE("CMAKE_Fortran_FLAGS = ${CMAKE_Fortran_FLAGS}") ADD_EXECUTABLE(testf hello.f) -IF(CMAKE_Fortran_COMPILER_SUPPORTS_F90 AND CMAKE_GENERATOR_NEW) +IF(CMAKE_Fortran_COMPILER_SUPPORTS_F90) ADD_EXECUTABLE(test_module test_module_main.f90 test_module_implementation.f90 test_module_interface.f90) -ENDIF(CMAKE_Fortran_COMPILER_SUPPORTS_F90 AND CMAKE_GENERATOR_NEW) +ENDIF(CMAKE_Fortran_COMPILER_SUPPORTS_F90) |