#=============================================================================== # @file CMakeLists.txt # # @author David Simon Kammer # # @date Mon Jan 17 11:51:06 2011 # # @brief configuration for 3D contact tests # # @section LICENSE # # Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne) # Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides) # # Akantu is free software: you can redistribute it and/or modify it under the # terms of the GNU Lesser General Public License as published by the Free # Software Foundation, either version 3 of the License, or (at your option) any # later version. # # Akantu is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more # details. # # You should have received a copy of the GNU Lesser General Public License # along with Akantu. If not, see . # # @section DESCRIPTION # #=============================================================================== add_mesh(test_regular_grid_2d_mesh squares.geo 2 1) register_test(test_regular_grid_triangle_3 test_regular_grid_triangle_3.cc) add_dependencies(test_regular_grid_triangle_3 test_regular_grid_2d_mesh) file(COPY ./ref_files/test_regular_grid_triangle_3.ref DESTINATION .) #=============================================================================== add_mesh(test_regular_grid_3d_mesh cubes.geo 3 1) register_test(test_regular_grid_tetrahedron_4 test_regular_grid_tetrahedron_4.cc) add_dependencies(test_regular_grid_tetrahedron_4 test_regular_grid_3d_mesh) file(COPY ./ref_files/test_regular_grid_tetrahedron_4.ref DESTINATION .) #=============================================================================== #add_mesh(test_regular_grid_3d_mesh cubes.geo 3 1) register_test(test_regular_grid_tetrahedron_4_nodes test_regular_grid_tetrahedron_4_nodes.cc) add_dependencies(test_regular_grid_tetrahedron_4_nodes test_regular_grid_3d_mesh) file(COPY ./ref_files/test_regular_grid_tetrahedron_4_nodes.ref DESTINATION .) #=============================================================================== add_mesh(test_regular_grid_3d_mesh_no_neighbors cube.geo 3 1) register_test(test_regular_grid_tetrahedron_4_nodes_no_neighbors test_regular_grid_tetrahedron_4_nodes_no_neighbors.cc) add_dependencies(test_regular_grid_tetrahedron_4_nodes_no_neighbors test_regular_grid_3d_mesh_no_neighbors) #=============================================================================== file(COPY material.dat DESTINATION .) file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/paraview)