2012-08-13 21:47:32 +04: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)
|
2007-12-31 00:11:38 +03:00
|
|
|
|
|
|
|
# Test module output directory if available.
|
2012-08-13 21:47:32 +04:00
|
|
|
if(CMAKE_Fortran_MODDIR_FLAG)
|
|
|
|
set_target_properties(subdir_mods PROPERTIES
|
2007-12-31 00:11:38 +03:00
|
|
|
Fortran_MODULE_DIRECTORY modules
|
|
|
|
)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|