Skip to content
Snippets Groups Projects
Commit d2053e8f authored by Edward 'Ned' Coltman's avatar Edward 'Ned' Coltman
Browse files

CMake files and Readme directory update

parent 859437ff
No related branches found
No related tags found
1 merge request!17Feature/exercise grids
......@@ -3,6 +3,7 @@ add_custom_target(test_exercises)
add_subdirectory(exercise-basic)
add_subdirectory(exercise-runtimeparams)
add_subdirectory(exercise-grids)
add_subdirectory(exercise-properties)
add_subdirectory(exercise-fluidsystem)
add_subdirectory(exercise-biomineralization)
......
......@@ -4,3 +4,5 @@ Click on the exercise to go the description
* [01 Exercise on the main file](./01-mainfile/README.md)
* [Exercise on runtime parameters](./exercise-runtimeparams/README.md)
* [Exercise on Grid Development](./exercise-grids/README.md)
# the grid exercise simulation program
dune_add_test(NAME exercise_grids
SOURCES exercise_grids.cc
CMD_ARGS exercise_grids.input)
# add tutorial to the common target
add_dependencies(test_exercises exercise_grids)
# add a symlink for the input file
dune_symlink_to_source_files(FILES "exercise_grids.input")
dune_symlink_to_source_files(FILES grids)
add_subdirectory(ex2)
add_subdirectory(exercise-basic)
add_subdirectory(exercise-runtimeparams)
add_subdirectory(exercise-grids)
# the grid exercise simulation program
dune_add_test(NAME exercise_grids_solution
SOURCES exercise_grids_solution.cc
CMD_ARGS exercise_grids_solution.input)
# add tutorial to the common target
add_dependencies(test_exercises exercise_grids_solution)
# add a symlink for the input file
dune_symlink_to_source_files(FILES "exercise_grids_solution.input")
dune_symlink_to_source_files(FILES grids)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment