From: Denis Davydov Date: Thu, 31 Dec 2015 05:53:56 +0000 (+0100) Subject: step-54: move input vtk to a separate folder to avoid its removal by make distclean X-Git-Tag: v8.4.0-rc2~118^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0868d882552bbffd702907922d1c10f8c723e109;p=dealii.git step-54: move input vtk to a separate folder to avoid its removal by make distclean --- diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 039563cb14..fd6d05b864 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -42,7 +42,7 @@ IF(DEAL_II_COMPONENT_EXAMPLES) PATTERN "untitled.geo" # step-49 PATTERN "untitled.msh" # step-49 PATTERN "topography.txt.gz" # step-53 - PATTERN "initial_mesh_3d.vtk" # step-54 + PATTERN "input/initial_mesh_3d.vtk" # step-54 PATTERN "DTMB-5415_bulbous_bow.iges" # step-54 ) diff --git a/examples/step-54/initial_mesh_3d.vtk b/examples/step-54/input/initial_mesh_3d.vtk similarity index 100% rename from examples/step-54/initial_mesh_3d.vtk rename to examples/step-54/input/initial_mesh_3d.vtk diff --git a/examples/step-54/step-54.cc b/examples/step-54/step-54.cc index c3c6c2ebb7..65add03320 100644 --- a/examples/step-54/step-54.cc +++ b/examples/step-54/step-54.cc @@ -401,7 +401,7 @@ int main () using namespace dealii; using namespace Step54; - const std::string in_mesh_filename = "initial_mesh_3d.vtk"; + const std::string in_mesh_filename = "input/initial_mesh_3d.vtk"; const std::string cad_file_name = "DTMB-5415_bulbous_bow.iges"; cout << "----------------------------------------------------------" << endl; @@ -470,4 +470,3 @@ int main () return 0; } -