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.
8 lines
301 B
8 lines
301 B
add_subdirectory(subdir)
|
|
|
|
add_library(mvstol_lib dummy.f90)
|
|
target_link_libraries(mvstol_lib PRIVATE "$<TARGET_OBJECTS:mvstol_obj>")
|
|
target_include_directories(mvstol_lib PUBLIC "${CMAKE_CURRENT_BINARY_DIR}/subdir")
|
|
add_library(mvstol_use use.f90)
|
|
target_link_libraries(mvstol_use PRIVATE mvstol_lib)
|