2016-02-24 02:57:37 +05:30
|
|
|
# group source related themal module
|
|
|
|
set (THERMAL "thermal_isothermal"
|
|
|
|
"thermal_adiabatic"
|
|
|
|
"thermal_conduction"
|
|
|
|
)
|
|
|
|
|
|
|
|
# compiler theraml module
|
|
|
|
foreach (p ${THERMAL})
|
2016-02-26 21:38:25 +05:30
|
|
|
add_library (${p} "${p}.f90")
|
2016-02-24 02:57:37 +05:30
|
|
|
endforeach (p)
|
2016-02-25 02:55:57 +05:30
|
|
|
|
|
|
|
# set libraries/modules for linking
|
|
|
|
foreach (p ${THERMAL})
|
2016-02-26 21:38:25 +05:30
|
|
|
set (DAMASK_LIB ${DAMASK_LIB} ${p})
|
2016-02-25 02:55:57 +05:30
|
|
|
endforeach (p)
|