mirror of
https://github.com/reactos/CMake.git
synced 2024-11-27 13:30:39 +00:00
ENH: Added test for Fortran90 modules in subdirectories.
This commit is contained in:
parent
4143d8a700
commit
f860026155
@ -22,4 +22,5 @@ IF(CMAKE_Fortran_COMPILER_SUPPORTS_F90)
|
||||
in_interface/main.f90
|
||||
in_interface/module.f90)
|
||||
|
||||
ADD_SUBDIRECTORY(Library)
|
||||
ENDIF(CMAKE_Fortran_COMPILER_SUPPORTS_F90)
|
||||
|
3
Tests/Fortran/Library/CMakeLists.txt
Normal file
3
Tests/Fortran/Library/CMakeLists.txt
Normal file
@ -0,0 +1,3 @@
|
||||
ADD_LIBRARY(subdir_mods a.f90 b.f90)
|
||||
ADD_EXECUTABLE(subdir_exe main.f90)
|
||||
TARGET_LINK_LIBRARIES(subdir_exe subdir_mods)
|
3
Tests/Fortran/Library/a.f90
Normal file
3
Tests/Fortran/Library/a.f90
Normal file
@ -0,0 +1,3 @@
|
||||
MODULE libraryModuleA
|
||||
USE libraryModuleB
|
||||
END MODULE
|
2
Tests/Fortran/Library/b.f90
Normal file
2
Tests/Fortran/Library/b.f90
Normal file
@ -0,0 +1,2 @@
|
||||
MODULE libraryModuleB
|
||||
END MODULE
|
3
Tests/Fortran/Library/main.f90
Normal file
3
Tests/Fortran/Library/main.f90
Normal file
@ -0,0 +1,3 @@
|
||||
PROGRAM MAINF90
|
||||
USE libraryModuleA
|
||||
END PROGRAM MAINF90
|
Loading…
Reference in New Issue
Block a user