Salome HOME
update CoreFlows
[tools/solverlab.git] / CoreFlows / Models / src / CMakeLists.txt
1
2 INCLUDE_DIRECTORIES(
3   ${CoreFlows_INCLUDES}                                                                                     #
4   )
5
6 SET(src_models_CXX
7     DriftModel.cxx
8     IsothermalTwoFluid.cxx
9     SinglePhase.cxx
10     FiveEqsTwoFluid.cxx
11     ProblemCoreFlows.cxx
12     TransportEquation.cxx
13     DiffusionEquation.cxx
14     StationaryDiffusionEquation.cxx
15     Fluide.cxx
16     ProblemFluid.cxx
17     utilitaire_algebre.cxx
18   )
19
20 ADD_LIBRARY(CoreFlows SHARED ${src_models_CXX})
21 target_link_libraries(CoreFlows ${CDMATH_LIBRARIES} ${PETSC_LIBRARIES} ${SLEPC_LIBRARIES})
22
23 INSTALL(TARGETS CoreFlows DESTINATION lib)