xref: /phasta/phSolver/incompressible/test/CMakeLists.txt (revision 6d0848bbfae688860d74cb6434f989d07b1aad31)
1set(CDIR ${CASES}/incompressible)
2
3add_test(NAME incompressible_copyInpCfg
4  COMMAND cp ${PHASTA_SOURCE_DIR}/phSolver/common/input.config ${CDIR})
5
6if(PHASTA_USE_SVLS)
7  set(solver svls)
8  add_test(NAME incompressible_${solver}_solverInp
9    COMMAND ln -snf ${CDIR}/solver.inp.svls ${CDIR}/solver.inp)
10  include(testing.cmake)
11endif()
12
13set(solver leslib)
14add_test(NAME incompressible_${solver}_solverInp
15  COMMAND ln -snf ${CDIR}/solver.inp.libles ${CDIR}/solver.inp)
16include(testing.cmake)
17