mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-21 05:38:24 -05:00
9d2769ecbd
Test module usage across a `$<TARGET_OBJECTS>`-as-linked-items 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
|