summaryrefslogtreecommitdiffstats
path: root/Tests/FortranModules/Issue25252/CMakeLists.txt
blob: 8111c429063028c6094869e67f2b1db9303f64dc (plain)
1
2
3
4
5
6
add_custom_target(custom_target_with_fortran
  COMMAND "${CMAKE_COMMAND}" -E echo "custom target with fortran sources"
  SOURCES custom_target.f90)

add_library(lib25252 lib.f90)
add_dependencies(lib25252 custom_target_with_fortran)