diff --git a/exercises/exercise-basic/CMakeLists.txt b/exercises/exercise-basic/CMakeLists.txt
index 7431c9aa03950b2e83e95da36957fb15daa65daf..d304b9d4e522da7961877a8472ab7073faa4889e 100644
--- a/exercises/exercise-basic/CMakeLists.txt
+++ b/exercises/exercise-basic/CMakeLists.txt
@@ -1,17 +1,15 @@
 # the immiscible two-phase simulation program
 dune_add_test(NAME exercise_basic_2p
-              SOURCES exercise_basic_2p.cc
-              CMD_ARGS exercise_basic.input)
+              SOURCES exercise_basic_2p.cc)
 
 # the compositional two-phase two-component simulation program
 dune_add_test(NAME exercise_basic_2p2c
-              SOURCES exercise_basic_2p2c.cc
-              CMD_ARGS exercise_basic.input)
+              SOURCES exercise_basic_2p2c.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 the input file
-dune_symlink_to_source_files(FILES "exercise_basic.input")
+# add a symlink for each input file
+add_input_file_links()
diff --git a/exercises/exercise-basic/exercise_basic.input b/exercises/exercise-basic/params.input
similarity index 100%
rename from exercises/exercise-basic/exercise_basic.input
rename to exercises/exercise-basic/params.input
diff --git a/exercises/exercise-biomineralization/CMakeLists.txt b/exercises/exercise-biomineralization/CMakeLists.txt
index fabbde9b158a98f9d4094c9e95b2430a422afec1..aa182c158d591d41df204b4bda2b97f5141345a4 100644
--- a/exercises/exercise-biomineralization/CMakeLists.txt
+++ b/exercises/exercise-biomineralization/CMakeLists.txt
@@ -1,10 +1,9 @@
 # executables for exercisebiomin
 dune_add_test(NAME exercisebiomin
-              SOURCES exercisebiomin.cc
-              CMD_ARGS exercisebiomin.input)
+              SOURCES exercisebiomin.cc)
 
 # add tutorial to the common target
 add_dependencies(test_exercises exercisebiomin)
 
-# add symlinks for the input files
-add_input_file_links(FILES "exercisebiomin.input")
+# add a symlink for each input file
+add_input_file_links()
diff --git a/exercises/exercise-coupling-ff-pm/interface/CMakeLists.txt b/exercises/exercise-coupling-ff-pm/interface/CMakeLists.txt
index 249f34aa90d7853fc35384d9953d4c0284939ca8..2865c75a9080be017fd7b8710401d3a8c07bea1d 100644
--- a/exercises/exercise-coupling-ff-pm/interface/CMakeLists.txt
+++ b/exercises/exercise-coupling-ff-pm/interface/CMakeLists.txt
@@ -1,9 +1,9 @@
-add_input_file_links()
-
 # executables for ex_interface_coupling_ff-pm
 dune_add_test(NAME ex_interface_coupling_ff-pm
-              SOURCES ex_interface_coupling_ff-pm.cc
-              CMD_ARGS ex_interface_coupling_ff-pm.input)
+              SOURCES ex_interface_coupling_ff-pm.cc)
 
 # add tutorial to the common target
 add_dependencies(test_exercises ex_interface_coupling_ff-pm)
+
+# add a symlink for each input file
+add_input_file_links()
diff --git a/exercises/exercise-coupling-ff-pm/models/CMakeLists.txt b/exercises/exercise-coupling-ff-pm/models/CMakeLists.txt
index 1776059b237e7dd90b48d577bdf01b3f463e7c34..c0f7fdefdf5e1487b9390df4409c55795b05f4e7 100644
--- a/exercises/exercise-coupling-ff-pm/models/CMakeLists.txt
+++ b/exercises/exercise-coupling-ff-pm/models/CMakeLists.txt
@@ -1,9 +1,9 @@
-add_input_file_links()
-
 # executables for ex_interface_coupling_ff-pm
 dune_add_test(NAME ex_models_coupling_ff-pm
-              SOURCES ex_models_coupling_ff-pm.cc
-              CMD_ARGS ex_models_coupling_ff-pm.input)
+              SOURCES ex_models_coupling_ff-pm.cc)
 
 # add tutorial to the common target
 add_dependencies(test_exercises ex_models_coupling_ff-pm)
+
+# add a symlink for each input file
+add_input_file_links()
diff --git a/exercises/exercise-coupling-ff-pm/turbulence/CMakeLists.txt b/exercises/exercise-coupling-ff-pm/turbulence/CMakeLists.txt
index 3fb93b14e46940ca5110f1b2ab3f69143b089593..3315f6a811bab474cb5598a409798ca4510c8339 100644
--- a/exercises/exercise-coupling-ff-pm/turbulence/CMakeLists.txt
+++ b/exercises/exercise-coupling-ff-pm/turbulence/CMakeLists.txt
@@ -1,9 +1,10 @@
-add_input_file_links()
-
 # executables for ex_interface_coupling_ff-pm
 dune_add_test(NAME ex_turbulence_coupling_ff-pm
-              SOURCES ex_turbulence_coupling_ff-pm.cc
-              CMD_ARGS ex_turbulence_coupling_ff-pm.input)
+              SOURCES ex_turbulence_coupling_ff-pm.cc)
+
+
+# add a symlink for each input file
+add_input_file_links()
 
 # add tutorial to the common target
 add_dependencies(test_exercises ex_turbulence_coupling_ff-pm)
diff --git a/exercises/exercise-fluidsystem/CMakeLists.txt b/exercises/exercise-fluidsystem/CMakeLists.txt
index 4e310fabea996abc6ab7bd9207f545c4e27935a4..6eb70e089d75881de19e635399845a8797acceab 100644
--- a/exercises/exercise-fluidsystem/CMakeLists.txt
+++ b/exercises/exercise-fluidsystem/CMakeLists.txt
@@ -3,18 +3,18 @@
 dune_add_test(NAME exercise-fluidsystem_a
               SOURCES exercise-fluidsystem.cc
               COMPILE_DEFINITIONS TYPETAG=ExerciseFluidsystemTwoP
-              COMPILE_ONLY # for testing purposes, ignore for the exercise
-              CMD_ARGS exercise-fluidsystem_a.input)
+              COMPILE_ONLY) # for testing purposes, ignore for the exercise
 
 #part b: 2p2cproblem
 dune_add_test(NAME exercise-fluidsystem_b
               SOURCES exercise-fluidsystem.cc
               COMPILE_DEFINITIONS TYPETAG=ExerciseFluidsystemTwoPTwoC
-              COMPILE_ONLY # for testing purposes, ignore for the exercise
-              CMD_ARGS exercise-fluidsystem_b.input)
+              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 symlinks for the input files
+# 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)
diff --git a/exercises/exercise-fractures/CMakeLists.txt b/exercises/exercise-fractures/CMakeLists.txt
index e1cc2de3d5ae31ad3de54e71607dbc2887c44252..9f10ed083620cb2e843e488eadcaa0e8b1c3ebf0 100644
--- a/exercises/exercise-fractures/CMakeLists.txt
+++ b/exercises/exercise-fractures/CMakeLists.txt
@@ -1,12 +1,11 @@
-dune_symlink_to_source_files(FILES "grids" "exercise_fractures.input")
-
 dune_add_test(NAME exercise_fractures
-	          CMAKE_GUARD "( dune-foamgrid_FOUND AND dune-alugrid_FOUND )"
-              SOURCES exercise_fractures.cc
-              COMMAND ./exercise_fractures
-              CMD_ARGS exercise_fractures.input)
+              CMAKE_GUARD "( dune-foamgrid_FOUND AND dune-alugrid_FOUND )"
+              SOURCES exercise_fractures.cc)
 
-set(CMAKE_BUILD_TYPE Release)
+# 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)
 
 #install sources
 install(FILES
diff --git a/exercises/exercise-grids/CMakeLists.txt b/exercises/exercise-grids/CMakeLists.txt
index fb224dd016ff9e482d329a93d0e706af71ab073d..f9028d809dd9b158821b0ff82762b4af9d92ec78 100644
--- a/exercises/exercise-grids/CMakeLists.txt
+++ b/exercises/exercise-grids/CMakeLists.txt
@@ -1,12 +1,11 @@
 # the grid exercise simulation program
 dune_add_test(NAME exercise_grids
-              SOURCES exercise_grids.cc
-              CMD_ARGS exercise_grids.input)
+              SOURCES exercise_grids.cc)
 
 # 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")
+# 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)
diff --git a/exercises/exercise-mainfile/CMakeLists.txt b/exercises/exercise-mainfile/CMakeLists.txt
index 0574e5fc15c71dd1a5fd26f96c5eedcbfa925863..f98c9146c113d417016f813a934f87998f0066bb 100644
--- a/exercises/exercise-mainfile/CMakeLists.txt
+++ b/exercises/exercise-mainfile/CMakeLists.txt
@@ -1,18 +1,15 @@
 # the one-phase simulation program
 dune_add_test(NAME exercise_1p_a
-              SOURCES exercise_1p_a.cc
-              CMD_ARGS exercise_1p_a.input)
+              SOURCES exercise_1p_a.cc)
 
 dune_add_test(NAME exercise_1p_b
-              SOURCES exercise_1p_b.cc
-              CMD_ARGS exercise_1p_b.input)
+              SOURCES exercise_1p_b.cc)
 
 dune_add_test(NAME exercise_1p_c
-              SOURCES exercise_1p_c.cc
-              CMD_ARGS exercise_1p_c.input)
+              SOURCES exercise_1p_c.cc)
 
 # add tutorial to the common target
 add_dependencies(test_exercises exercise_1p_a exercise_1p_b exercise_1p_c)
 
-# add a symlink for the input file
-dune_symlink_to_source_files(FILES "exercise_1p_a.input" "exercise_1p_b.input" "exercise_1p_c.input")
+# add a symlink for each input file
+add_input_file_links()
diff --git a/exercises/exercise-properties/CMakeLists.txt b/exercises/exercise-properties/CMakeLists.txt
index 0db052ca95a2eaff0ae3b69a58b1fbd582720ae4..2b3f14f23a137dc9e247502b41a89bf791ff0a26 100644
--- a/exercises/exercise-properties/CMakeLists.txt
+++ b/exercises/exercise-properties/CMakeLists.txt
@@ -1,10 +1,9 @@
 # the property exercise simulation program
 dune_add_test(NAME exercise_properties
-              SOURCES exercise_properties.cc
-              CMD_ARGS exercise_properties.input)
+              SOURCES exercise_properties.cc)
 
 # add tutorial to the common target
 add_dependencies(test_exercises exercise_properties)
 
-# add a symlink for the input file
-dune_symlink_to_source_files(FILES "exercise_properties.input")
+# add a symlink for each input file
+add_input_file_links()
diff --git a/exercises/exercise-runtimeparams/CMakeLists.txt b/exercises/exercise-runtimeparams/CMakeLists.txt
index 86b8a09176ad91a43d00f240c91d2947cab0d879..15c7e5834e5b773dc081daa9ac2cd4612f5e4944 100644
--- a/exercises/exercise-runtimeparams/CMakeLists.txt
+++ b/exercises/exercise-runtimeparams/CMakeLists.txt
@@ -1,11 +1,9 @@
 # the runtime parameter exercise simulation program
 dune_add_test(NAME exercise_runtimeparams
-              SOURCES exercise_runtimeparams.cc
-              CMD_ARGS exercise_runtimeparams.input)
+              SOURCES exercise_runtimeparams.cc)
 
 # add tutorial to the common target
 add_dependencies(test_exercises exercise_runtimeparams)
 
-# add a symlink for the input file
-dune_symlink_to_source_files(FILES "exercise_runtimeparams.input")
-
+# add a symlink for each input file
+add_input_file_links()
diff --git a/exercises/solution/exercise-basic/CMakeLists.txt b/exercises/solution/exercise-basic/CMakeLists.txt
index 01337594ef55c576332fc3e7c222ec901e0ab11e..b845b89a8f62a36a018a6411e3241da45052f892 100644
--- a/exercises/solution/exercise-basic/CMakeLists.txt
+++ b/exercises/solution/exercise-basic/CMakeLists.txt
@@ -1,11 +1,10 @@
 # the two-phase non-isothermal simulation program
 dune_add_test(NAME exercise_basic_2pni_solution
-              SOURCES exercise_basic_2pni.cc
-              CMD_ARGS exercise_basic.input)
+              SOURCES exercise_basic_2pni.cc)
 
 
 # add exercise to the common target
 add_dependencies(test_exercises exercise_basic_2pni_solution)
 
-# add a symlink for the input file
-dune_symlink_to_source_files(FILES "exercise_basic.input")
+# add a symlink for each input file
+add_input_file_links()
diff --git a/exercises/solution/exercise-basic/exercise_basic.input b/exercises/solution/exercise-basic/exercise_basic_2pni_solution.input
similarity index 100%
rename from exercises/solution/exercise-basic/exercise_basic.input
rename to exercises/solution/exercise-basic/exercise_basic_2pni_solution.input
diff --git a/exercises/solution/exercise-biomineralization/CMakeLists.txt b/exercises/solution/exercise-biomineralization/CMakeLists.txt
index 46b5a728813d845fa69b7921104f1bc3076ceec1..b39f30e00987adfe1a70ab2b1d7c696a85d4fd09 100644
--- a/exercises/solution/exercise-biomineralization/CMakeLists.txt
+++ b/exercises/solution/exercise-biomineralization/CMakeLists.txt
@@ -1,10 +1,9 @@
 # executables for exercisebiomin
 dune_add_test(NAME exercisebiomin_solution
-              SOURCES exercisebiomin.cc
-              CMD_ARGS exercisebiomin_solution.input)
+              SOURCES exercisebiomin.cc)
 
 # add tutorial to the common target
 add_dependencies(test_exercises exercisebiomin_solution)
 
-# add symlinks for the input files
-add_input_file_links(FILES "exercisebiomin.input")
+# add a symlink for each input file
+add_input_file_links()
diff --git a/exercises/solution/exercise-coupling-ff-pm/interface/CMakeLists.txt b/exercises/solution/exercise-coupling-ff-pm/interface/CMakeLists.txt
index 24d0d12ed5870a60bd54491d14d04c9993359fc4..b0eb17985b0e1205452ad63ea84e8f9bb28c00ba 100644
--- a/exercises/solution/exercise-coupling-ff-pm/interface/CMakeLists.txt
+++ b/exercises/solution/exercise-coupling-ff-pm/interface/CMakeLists.txt
@@ -1,25 +1,22 @@
-add_input_file_links()
-
 dune_add_test(NAME orig_ex_interface_coupling_ff-pm
               SOURCES ex_interface_coupling_ff-pm.cc
-              COMPILE_DEFINITIONS EXNUMBER=0
-              CMD_ARGS ex_interface_coupling_ff-pm.input)
+              COMPILE_DEFINITIONS EXNUMBER=0)
 
 dune_add_test(NAME sol_a_ex_interface_coupling_ff-pm
               SOURCES ex_interface_coupling_ff-pm.cc
-              COMPILE_DEFINITIONS EXNUMBER=1
-              CMD_ARGS ex_interface_coupling_ff-pm.input)
+              COMPILE_DEFINITIONS EXNUMBER=1)
 
 dune_add_test(NAME sol_b_ex_interface_coupling_ff-pm
               SOURCES ex_interface_coupling_ff-pm.cc
-              COMPILE_DEFINITIONS EXNUMBER=2
-              CMD_ARGS ex_interface_coupling_ff-pm.input)
+              COMPILE_DEFINITIONS EXNUMBER=2)
 
 dune_add_test(NAME sol_c_ex_interface_coupling_ff-pm
               SOURCES ex_interface_coupling_ff-pm.cc
-              COMPILE_DEFINITIONS EXNUMBER=3
-              CMD_ARGS ex_interface_coupling_ff-pm.input)
+              COMPILE_DEFINITIONS EXNUMBER=3)
 
 
 # add exercise to the common target
 add_dependencies(test_exercises sol_a_ex_interface_coupling_ff-pm sol_b_ex_interface_coupling_ff-pm sol_b_ex_interface_coupling_ff-pm)
+
+# add a symlink for each input file
+add_input_file_links()
diff --git a/exercises/solution/exercise-coupling-ff-pm/interface/ex_interface_coupling_ff-pm.input b/exercises/solution/exercise-coupling-ff-pm/interface/params.input
similarity index 100%
rename from exercises/solution/exercise-coupling-ff-pm/interface/ex_interface_coupling_ff-pm.input
rename to exercises/solution/exercise-coupling-ff-pm/interface/params.input
diff --git a/exercises/solution/exercise-coupling-ff-pm/models/CMakeLists.txt b/exercises/solution/exercise-coupling-ff-pm/models/CMakeLists.txt
index f7e7af5fdf7667b674cdf987c20a7f23985487e5..dc982cb0b199273843c4034d14509aa2e8ac9f61 100644
--- a/exercises/solution/exercise-coupling-ff-pm/models/CMakeLists.txt
+++ b/exercises/solution/exercise-coupling-ff-pm/models/CMakeLists.txt
@@ -1,24 +1,21 @@
-add_input_file_links()
-
 dune_add_test(NAME orig_ex_models_coupling_ff-pm
               SOURCES ex_models_coupling_ff-pm.cc
-              COMPILE_DEFINITIONS EXNUMBER=0
-              CMD_ARGS ex_models_coupling_ff-pm.input)
+              COMPILE_DEFINITIONS EXNUMBER=0)
 
 dune_add_test(NAME sol_a_ex_models_coupling_ff-pm
               SOURCES ex_models_coupling_ff-pm.cc
-              COMPILE_DEFINITIONS EXNUMBER=1
-              CMD_ARGS ex_models_coupling_ff-pm.input)
+              COMPILE_DEFINITIONS EXNUMBER=1)
 
 dune_add_test(NAME sol_b_ex_models_coupling_ff-pm
               SOURCES ex_models_coupling_ff-pm.cc
-              COMPILE_DEFINITIONS EXNUMBER=2
-              CMD_ARGS ex_models_coupling_ff-pm.input)
+              COMPILE_DEFINITIONS EXNUMBER=2)
 
 dune_add_test(NAME sol_c_ex_models_coupling_ff-pm
               SOURCES ex_models_coupling_ff-pm.cc
-              COMPILE_DEFINITIONS EXNUMBER=3
-              CMD_ARGS ex_models_coupling_ff-pm.input)
+              COMPILE_DEFINITIONS EXNUMBER=3)
 
 # add exercise to the common target
 add_dependencies(test_exercises sol_a_ex_models_coupling_ff-pm sol_b_ex_models_coupling_ff-pm sol_b_ex_models_coupling_ff-pm)
+
+# add a symlink for each input file
+add_input_file_links()
diff --git a/exercises/solution/exercise-coupling-ff-pm/models/ex_models_coupling_ff-pm.input b/exercises/solution/exercise-coupling-ff-pm/models/params.input
similarity index 100%
rename from exercises/solution/exercise-coupling-ff-pm/models/ex_models_coupling_ff-pm.input
rename to exercises/solution/exercise-coupling-ff-pm/models/params.input
diff --git a/exercises/solution/exercise-coupling-ff-pm/turbulence/CMakeLists.txt b/exercises/solution/exercise-coupling-ff-pm/turbulence/CMakeLists.txt
index e19d81c519756532c8f6fd2b7f28926723f56952..f39c13f2c98fa71c041d219b0c35b7baebb5ef05 100644
--- a/exercises/solution/exercise-coupling-ff-pm/turbulence/CMakeLists.txt
+++ b/exercises/solution/exercise-coupling-ff-pm/turbulence/CMakeLists.txt
@@ -1,19 +1,17 @@
-add_input_file_links()
-
 dune_add_test(NAME orig_turbulence_coupling_ff-pm
               SOURCES ex_turbulence_coupling_ff-pm.cc
-              COMPILE_DEFINITIONS EXNUMBER=0
-              CMD_ARGS ex_turbulence_coupling_ff-pm.input)
+              COMPILE_DEFINITIONS EXNUMBER=0)
 
 dune_add_test(NAME sol_a_ex_turbulence_coupling_ff-pm
               SOURCES ex_turbulence_coupling_ff-pm.cc
-              COMPILE_DEFINITIONS EXNUMBER=1
-              CMD_ARGS ex_turbulence_coupling_ff-pm.input)
+              COMPILE_DEFINITIONS EXNUMBER=1)
 
 dune_add_test(NAME sol_b_ex_turbulence_coupling_ff-pm
               SOURCES ex_turbulence_coupling_ff-pm.cc
-              COMPILE_DEFINITIONS EXNUMBER=2
-              CMD_ARGS ex_turbulence_coupling_ff-pm.input)
+              COMPILE_DEFINITIONS EXNUMBER=2)
 
 # add exercise to the common target
 add_dependencies(test_exercises sol_a_ex_turbulence_coupling_ff-pm sol_b_ex_turbulence_coupling_ff-pm sol_b_ex_turbulence_coupling_ff-pm)
+
+# add a symlink for each input file
+add_input_file_links()
diff --git a/exercises/solution/exercise-coupling-ff-pm/turbulence/ex_turbulence_coupling_ff-pm.input b/exercises/solution/exercise-coupling-ff-pm/turbulence/params.input
similarity index 100%
rename from exercises/solution/exercise-coupling-ff-pm/turbulence/ex_turbulence_coupling_ff-pm.input
rename to exercises/solution/exercise-coupling-ff-pm/turbulence/params.input
diff --git a/exercises/solution/exercise-fluidsystem/CMakeLists.txt b/exercises/solution/exercise-fluidsystem/CMakeLists.txt
index 939a343303b7a8b6bfc8647933c3b64aa328919a..4861d4876bdcf8c97d85923cb0e93add2b171d7b 100644
--- a/exercises/solution/exercise-fluidsystem/CMakeLists.txt
+++ b/exercises/solution/exercise-fluidsystem/CMakeLists.txt
@@ -2,17 +2,15 @@
 #part a: 2pproblem
 dune_add_test(NAME exercise-fluidsystem_a_solution
               SOURCES exercise-fluidsystem.cc
-              COMPILE_DEFINITIONS TYPETAG=ExerciseFluidsystemTwoP
-              CMD_ARGS exercise-fluidsystem_a_solution.input)
+              COMPILE_DEFINITIONS TYPETAG=ExerciseFluidsystemTwoP)
 
 #part b: 2p2cproblem
 dune_add_test(NAME exercise-fluidsystem_b_solution
               SOURCES exercise-fluidsystem.cc
-              COMPILE_DEFINITIONS TYPETAG=ExerciseFluidsystemTwoPTwoC
-              CMD_ARGS exercise-fluidsystem_b_solution.input)
+              COMPILE_DEFINITIONS TYPETAG=ExerciseFluidsystemTwoPTwoC)
 
 # add exercises to the common target
 add_dependencies(test_exercises exercise-fluidsystem_a exercise-fluidsystem_b)
 
-# add symlinks for the input files
+# add a symlink for each input file
 add_input_file_links()
diff --git a/exercises/solution/exercise-fractures/CMakeLists.txt b/exercises/solution/exercise-fractures/CMakeLists.txt
index c5d1943d74e9f5305f790fee25756e660981a562..62a08e093596db4b8ae454210b99af1409fa2cfc 100644
--- a/exercises/solution/exercise-fractures/CMakeLists.txt
+++ b/exercises/solution/exercise-fractures/CMakeLists.txt
@@ -1,27 +1,28 @@
-dune_symlink_to_source_files(FILES "grids" "exercise_fractures.input" "exercise_fractures_a.input" "exercise_fractures_b.input" "exercise_fractures_c.input")
-
 # executable for the exercise
 add_executable(exercise_fractures_solution EXCLUDE_FROM_ALL exercise_fractures.cc)
 
 dune_add_test(NAME exercise_fractures_solution_a
-	          CMAKE_GUARD "( dune-foamgrid_FOUND AND dune-alugrid_FOUND )"
+              CMAKE_GUARD "( dune-foamgrid_FOUND AND dune-alugrid_FOUND )"
               TARGET exercise_fractures_solution
               COMMAND ./exercise_fractures_solution
-		      CMD_ARGS exercise_fractures_a.input)
+              CMD_ARGS exercise_fractures_solution_a.input)
 
 dune_add_test(NAME exercise_fractures_solution_b
-	          CMAKE_GUARD "( dune-foamgrid_FOUND AND dune-alugrid_FOUND )"
+              CMAKE_GUARD "( dune-foamgrid_FOUND AND dune-alugrid_FOUND )"
               TARGET exercise_fractures_solution
               COMMAND ./exercise_fractures_solution
-		      CMD_ARGS exercise_fractures_b.input)
+              CMD_ARGS exercise_fractures_solution_b.input)
 
 dune_add_test(NAME exercise_fractures_solution_c
-	          CMAKE_GUARD "( dune-foamgrid_FOUND AND dune-alugrid_FOUND )"
+              CMAKE_GUARD "( dune-foamgrid_FOUND AND dune-alugrid_FOUND )"
               TARGET exercise_fractures_solution
               COMMAND ./exercise_fractures_solution
-		      CMD_ARGS exercise_fractures_c.input)
+              CMD_ARGS exercise_fractures_solution_c.input)
 
-set(CMAKE_BUILD_TYPE Release)
+# 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)
 
 #install sources
 install(FILES
diff --git a/exercises/solution/exercise-fractures/exercise_fractures_a.input b/exercises/solution/exercise-fractures/exercise_fractures_solution_a.input
similarity index 100%
rename from exercises/solution/exercise-fractures/exercise_fractures_a.input
rename to exercises/solution/exercise-fractures/exercise_fractures_solution_a.input
diff --git a/exercises/solution/exercise-fractures/exercise_fractures_b.input b/exercises/solution/exercise-fractures/exercise_fractures_solution_b.input
similarity index 100%
rename from exercises/solution/exercise-fractures/exercise_fractures_b.input
rename to exercises/solution/exercise-fractures/exercise_fractures_solution_b.input
diff --git a/exercises/solution/exercise-fractures/exercise_fractures_c.input b/exercises/solution/exercise-fractures/exercise_fractures_solution_c.input
similarity index 100%
rename from exercises/solution/exercise-fractures/exercise_fractures_c.input
rename to exercises/solution/exercise-fractures/exercise_fractures_solution_c.input
diff --git a/exercises/solution/exercise-grids/CMakeLists.txt b/exercises/solution/exercise-grids/CMakeLists.txt
index 9aafd3e84b248ba4b58d0b91f069ea8527fded1a..ddbf143bfa36a6a462fae89d40f62ecdfcce7ac7 100644
--- a/exercises/solution/exercise-grids/CMakeLists.txt
+++ b/exercises/solution/exercise-grids/CMakeLists.txt
@@ -1,11 +1,11 @@
 # the grid exercise simulation program
 dune_add_test(NAME exercise_grids_solution
-              SOURCES exercise_grids_solution.cc
-              CMD_ARGS exercise_grids_solution.input)
+              SOURCES exercise_grids_solution.cc)
 
 # 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")
+# 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)
diff --git a/exercises/solution/exercise-mainfile/CMakeLists.txt b/exercises/solution/exercise-mainfile/CMakeLists.txt
index 85c84ea30d9bff304902ca447da8d3ff36a0a95c..894df90df30e86581f0100e8a92802801ef00946 100644
--- a/exercises/solution/exercise-mainfile/CMakeLists.txt
+++ b/exercises/solution/exercise-mainfile/CMakeLists.txt
@@ -1,13 +1,12 @@
 # the one-phase simulation program
 dune_add_test(NAME exercise_1p_a_solution
               SOURCES exercise_1p_a_solution.cc
-              COMPILE_DEFINITIONS TYPETAG=OnePIncompressible
-              CMD_ARGS exercise_1p_a.input)
+              COMPILE_DEFINITIONS TYPETAG=OnePIncompressible)
 
 # here, add the two-phase non-isothermal simulation program
 
 # add tutorial to the common target
 add_dependencies(test_exercises exercise_1p_a_solution)
 
-# add a symlink for the input file
-dune_symlink_to_source_files(FILES "exercise_1p_a.input")
+# add a symlink for each input file
+add_input_file_links()
diff --git a/exercises/solution/exercise-mainfile/exercise_1p_a.input b/exercises/solution/exercise-mainfile/exercise_1p_a_solution.input
similarity index 100%
rename from exercises/solution/exercise-mainfile/exercise_1p_a.input
rename to exercises/solution/exercise-mainfile/exercise_1p_a_solution.input
diff --git a/exercises/solution/exercise-properties/CMakeLists.txt b/exercises/solution/exercise-properties/CMakeLists.txt
index 0d8fe3654270ec652e13d805d747d03a8cdc6de1..5ce66c9d255cdc7c173322f72708e9f4a5c9eb02 100644
--- a/exercises/solution/exercise-properties/CMakeLists.txt
+++ b/exercises/solution/exercise-properties/CMakeLists.txt
@@ -1,10 +1,9 @@
 # the solution to the properties exercise
 dune_add_test(NAME exercise_properties_solution
-              SOURCES exercise_properties_solution.cc
-              CMD_ARGS exercise_properties_solution.input)
+              SOURCES exercise_properties_solution.cc)
 
 # add tutorial to the common target
 add_dependencies(test_exercises exercise_properties_solution)
 
-# add a symlink for the input file
-dune_symlink_to_source_files(FILES "exercise_properties_solution.input")
+# add a symlink for each input file
+add_input_file_links()
diff --git a/exercises/solution/exercise-runtimeparams/CMakeLists.txt b/exercises/solution/exercise-runtimeparams/CMakeLists.txt
index d6f35600974512cdba5bc88ecc29d10bbb239c6c..50048b9b5e25bcf6c565e8815986dee1675d87e5 100644
--- a/exercises/solution/exercise-runtimeparams/CMakeLists.txt
+++ b/exercises/solution/exercise-runtimeparams/CMakeLists.txt
@@ -1,11 +1,9 @@
 # the runtime parameter exercise simulation program
 dune_add_test(NAME exercise_runtimeparams_solution
-              SOURCES exercise_runtimeparams_solution.cc
-              CMD_ARGS exercise_runtimeparams_solution.input)
+              SOURCES exercise_runtimeparams_solution.cc)
 
 # add tutorial to the common target
 add_dependencies(test_exercises exercise_runtimeparams_solution)
 
-# add a symlink for the input file
-dune_symlink_to_source_files(FILES "exercise_runtimeparams_solution.input")
-
+# add a symlink for each input file
+add_input_file_links()