diff options
Diffstat (limited to 'Tests/Fortran/CMakeLists.txt')
-rw-r--r-- | Tests/Fortran/CMakeLists.txt | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Tests/Fortran/CMakeLists.txt b/Tests/Fortran/CMakeLists.txt index de1c824..3a299b2 100644 --- a/Tests/Fortran/CMakeLists.txt +++ b/Tests/Fortran/CMakeLists.txt @@ -23,9 +23,7 @@ IF(CMAKE_Fortran_COMPILER_SUPPORTS_F90) in_interface/main.f90 in_interface/module.f90) - IF(CMAKE_Fortran_COMPILER_ID MATCHES GNU) - SET(TEST_MODULE_DEPENDS 1) - ENDIF(CMAKE_Fortran_COMPILER_ID MATCHES GNU) + SET(TEST_MODULE_DEPENDS 1) ENDIF(CMAKE_Fortran_COMPILER_SUPPORTS_F90) IF(TEST_MODULE_DEPENDS) @@ -57,6 +55,13 @@ IF(TEST_MODULE_DEPENDS) ) ADD_CUSTOM_TARGET(ExternalTarget ALL DEPENDS ${testf_BINARY_DIR}/ExternalProject) + # Test module output directory if available. + IF(CMAKE_Fortran_MODDIR_FLAG) + SET(Library_MODDIR "${testf_BINARY_DIR}/Library/modules") + ELSE(CMAKE_Fortran_MODDIR_FLAG) + SET(Library_MODDIR "${testf_BINARY_DIR}/Library") + ENDIF(CMAKE_Fortran_MODDIR_FLAG) + ADD_SUBDIRECTORY(Library) ADD_SUBDIRECTORY(Executable) ENDIF(TEST_MODULE_DEPENDS) |