]> SALOME platform Git repositories - tools/solverlab.git/blob - CoreFlows/examples/CMakeLists.txt
Salome HOME
moved test target
[tools/solverlab.git] / CoreFlows / examples / CMakeLists.txt
1 project(test)
2
3 file(GLOB MESHES_TO_INSTALL resources )
4 install(DIRECTORY ${MESHES_TO_INSTALL} DESTINATION share/examples)
5
6 file(COPY resources DESTINATION ${CMAKE_CURRENT_BINARY_DIR} 
7     FILE_PERMISSIONS OWNER_EXECUTE OWNER_READ OWNER_WRITE
8 )
9
10
11 add_subdirectory (C)
12
13 if (COREFLOWS_WITH_PYTHON )
14
15   add_subdirectory (Python)
16
17 endif (COREFLOWS_WITH_PYTHON )
18
19 add_custom_target (CoreFlows COMMAND ctest -O testsCoreFlows.log)
20
21 add_custom_target (eos COMMAND ctest -R EOS)# may be replace ctest -R with ctest -L
22 add_custom_target (coupled COMMAND ctest -R Coupled)# may be replace ctest -R with ctest -L
23
24 add_custom_target (SinglePhase COMMAND ctest -R SinglePhase)# may be replace ctest -R with ctest -L
25 add_custom_target (DriftModel  COMMAND ctest -R DriftModel) # may be replace ctest -R with ctest -L
26 add_custom_target (IsothermalTwoFluid COMMAND ctest -R IsothermalTwoFluid)# may be replace ctest -R with ctest -L
27 add_custom_target (   FiveEqsTwoFluid COMMAND ctest -R    FiveEqsTwoFluid)# may be replace ctest -R with ctest -L
28
29 add_custom_target (DiffusionEquation COMMAND ctest -R DiffusionEquation -E StationaryDiffusionEquation)# may be replace ctest -R with ctest -L
30 add_custom_target (diffusion_tests         COMMAND ctest -R DiffusionEquation)# may be replace ctest -R with ctest -L
31 add_custom_target (TransportEquation COMMAND ctest -R TransportEquation)# may be replace ctest -R with ctest -L
32 add_custom_target (transport_tests         COMMAND ctest -R TransportEquation)# may be replace ctest -R with ctest -L
33 add_custom_target (StationaryDiffusionEquation COMMAND ctest -R StationaryDiffusionEquation)# may be replace ctest -R with ctest -L
34
35 add_custom_target (convergence COMMAND ctest -R convergence)# may be replace ctest -R with ctest -L
36
37 add_custom_target (fv_tests         COMMAND ctest -R FV)# may be replace ctest -R with ctest -L
38 add_custom_target (FV_tests         COMMAND ctest -R FV)# may be replace ctest -R with ctest -L
39 add_custom_target (fe_tests         COMMAND ctest -R FE)# may be replace ctest -R with ctest -L
40 add_custom_target (FE_tests         COMMAND ctest -R FE)# may be replace ctest -R with ctest -L
41 add_custom_target (1D_tests         COMMAND ctest -R 1D)# may be replace ctest -R with ctest -L
42 add_custom_target (2D_tests         COMMAND ctest -R 2D)# may be replace ctest -R with ctest -L
43 add_custom_target (3D_tests         COMMAND ctest -R 3D)# may be replace ctest -R with ctest -L
44 add_custom_target (Dirichlet  COMMAND ctest -R Dirichlet)# may be replace ctest -R with ctest -L
45 add_custom_target (Neumann    COMMAND ctest -R Neumann)# may be replace ctest -R with ctest -L
46