Skip to content
Snippets Groups Projects
CMakeLists.txt 483 B
# the immiscible two-phase simulation program
dune_add_test(NAME exercise_basic_2p
              SOURCES 2pmain.cc)

# the compositional two-phase two-component simulation program
dune_add_test(NAME exercise_basic_2p2c
              SOURCES 2p2cmain.cc)

# here, add the two-phase non-isothermal simulation program

# add exercise to the common target
add_dependencies(test_exercises exercise_basic_2p exercise_basic_2p2c)

# add a symlink for each input file
add_input_file_links()