mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-14 10:30:15 -05:00
7c1e52be87
Test module usage across a `$<TARGET_OBJECTS>`-as-sources use case. See: #25425
12 lines
104 B
Fortran
12 lines
104 B
Fortran
module m1
|
|
|
|
implicit none
|
|
|
|
contains
|
|
|
|
pure real function pi()
|
|
pi = 4*atan(1.)
|
|
end function
|
|
|
|
end module m1
|