You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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)
|