Salome HOME
:Merge branch 'master' of https://codev-tuleap.cea.fr/plugins/git/spns/SolverLab
[tools/solverlab.git] / CoreFlows / Models / src / CMakeLists.txt
1
2 INCLUDE_DIRECTORIES(
3   ${CoreFlows_INCLUDES}                                                                                     #
4   ${PETSC_INCLUDES}
5   ${SLEPC_INCLUDES}
6   )
7
8 SET(src_models_CXX
9     DriftModel.cxx
10     IsothermalTwoFluid.cxx
11     SinglePhase.cxx
12     FiveEqsTwoFluid.cxx
13     ProblemCoreFlows.cxx
14     TransportEquation.cxx
15     DiffusionEquation.cxx
16     StationaryDiffusionEquation.cxx
17 #    LinearElasticityModel.cxx
18     Fluide.cxx
19     ProblemFluid.cxx
20     utilitaire_algebre.cxx
21   )
22
23 ADD_LIBRARY(CoreFlowsLibs SHARED ${src_models_CXX})
24 target_link_libraries(CoreFlowsLibs ${CDMATH_LIBRARIES} ${PETSC_LIBRARIES} ${SLEPC_LIBRARIES})
25
26 INSTALL(TARGETS CoreFlowsLibs DESTINATION lib)