2013-03-16 19:13:01 +02:00
|
|
|
include_directories(${Library_MODDIR})
|
|
|
|
add_library(subdir_mods a.f90 b.f90)
|
|
|
|
add_executable(subdir_exe main.f90)
|
|
|
|
target_link_libraries(subdir_exe subdir_mods)
|
2008-10-12 18:41:06 +02:00
|
|
|
|
|
|
|
# Test module output directory if available.
|
2013-03-16 19:13:01 +02:00
|
|
|
if(CMAKE_Fortran_MODDIR_FLAG)
|
|
|
|
set_target_properties(subdir_mods PROPERTIES
|
2008-10-12 18:41:06 +02:00
|
|
|
Fortran_MODULE_DIRECTORY modules
|
|
|
|
)
|
2013-03-16 19:13:01 +02:00
|
|
|
endif()
|