#=============================================================================== # @file CMakeLists.txt # # @author Mohit Pundir # # @date creation: Sat Feb 29 2020 # @date last modification: Sat feb 29 2020 # # @brief configuration for node selection tests # # @section LICENSE # # Copyright (©) 2010-2018 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 # #=============================================================================== set(_meshes) add_mesh(selection_seg data/selection_1D.geo DIM 2 ORDER 1 OUTPUT _selection_segment_2.msh) list(APPEND _meshes selection_2D) add_mesh(selection_tri data/selection_2D.geo DIM 2 ORDER 1 OUTPUT _selection_triangle_3.msh) list(APPEND _meshes selection_2D) add_mesh(detection_tet data/selection_3D.geo DIM 3 ORDER 1 OUTPUT _selection_tetrahedron_4.msh) list(APPEND _meshes selection_3D) register_gtest_sources( SOURCES test_selection.cc PACKAGE contact_mechanics DEPENDS ${_meshes} FILES_TO_COPY material.dat )