summaryrefslogtreecommitdiffstats
path: root/Tests/FortranModules/ModulesViaSubdirTargetObjectsLink/CMakeLists.txt
blob: b52b423feaedd3645df8ceef4f2dcfa6f69e1da0 (plain)
1
2
3
4
5
6
7
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)