# executables for exercise part a & b
#part a: 2pproblem
dune_add_test(NAME exercise_fluidsystem_a
              SOURCES main.cc
              COMPILE_DEFINITIONS TYPETAG=ExerciseFluidsystemTwoP
              COMPILE_ONLY) # for testing purposes, ignore for the exercise

#part b: 2p2cproblem
dune_add_test(NAME exercise_fluidsystem_b
              SOURCES main.cc
              COMPILE_DEFINITIONS TYPETAG=ExerciseFluidsystemTwoPTwoC
              COMPILE_ONLY) # for testing purposes, ignore for the exercise

# add exercises to the common target
add_dependencies(test_exercises exercise_fluidsystem_a exercise_fluidsystem_b)

# add a symlink for each input file
add_input_file_links()
# add a symlink for the grids folder
dune_symlink_to_source_files(FILES grids)
