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.
12 lines
332 B
12 lines
332 B
12 years ago
|
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)
|
||
16 years ago
|
|
||
|
# Test module output directory if available.
|
||
12 years ago
|
if(CMAKE_Fortran_MODDIR_FLAG)
|
||
|
set_target_properties(subdir_mods PROPERTIES
|
||
16 years ago
|
Fortran_MODULE_DIRECTORY modules
|
||
|
)
|
||
12 years ago
|
endif()
|