From 2951338912455e359d7d60c0c919c301f670fc67 Mon Sep 17 00:00:00 2001 From: Gauthier Becker <gauthierbecker@gmail.com> Date: Thu, 10 Mar 2011 06:52:51 +0000 Subject: [PATCH] Add files --- NonLinearSolver/CMakeLists.txt | 14 ++++++++++++++ NonLinearSolver/internalPoints/CMakeLists.txt | 11 +++++++++++ NonLinearSolver/internalPoints/ipstate.cpp | 1 + NonLinearSolver/internalPoints/ipstate.h | 0 4 files changed, 26 insertions(+) create mode 100644 NonLinearSolver/CMakeLists.txt create mode 100644 NonLinearSolver/internalPoints/CMakeLists.txt create mode 100644 NonLinearSolver/internalPoints/ipstate.cpp create mode 100644 NonLinearSolver/internalPoints/ipstate.h diff --git a/NonLinearSolver/CMakeLists.txt b/NonLinearSolver/CMakeLists.txt new file mode 100644 index 0000000000..05666facb1 --- /dev/null +++ b/NonLinearSolver/CMakeLists.txt @@ -0,0 +1,14 @@ +# Gmsh - Copyright (C) 1997-2010 C. Geuzaine, J.-F. Remacle +# +# See the LICENSE.txt file for license information. Please report all +# bugs and problems to <gmsh@geuz.org>. + +add_subdirectory(InternalPoints) +include_directories(InternalPoints) +append_gmsh_src(NonLinearSolver "${SRC};${HDR}") +set(GMSH_DIRS ${GMSH_DIRS};NonLinearSolver PARENT_SCOPE) + + + + + diff --git a/NonLinearSolver/internalPoints/CMakeLists.txt b/NonLinearSolver/internalPoints/CMakeLists.txt new file mode 100644 index 0000000000..5b693a1305 --- /dev/null +++ b/NonLinearSolver/internalPoints/CMakeLists.txt @@ -0,0 +1,11 @@ +# Gmsh - Copyright (C) 1997-2010 C. Geuzaine, J.-F. Remacle +# +# See the LICENSE.txt file for license information. Please report all +# bugs and problems to <gmsh@geuz.org>. + +set(SRC + ipstate.cpp +) + +file(GLOB HDR RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.h) +append_gmsh_src(NonLinearSolver/internalPoints "${SRC};${HDR}") diff --git a/NonLinearSolver/internalPoints/ipstate.cpp b/NonLinearSolver/internalPoints/ipstate.cpp new file mode 100644 index 0000000000..d3333c5644 --- /dev/null +++ b/NonLinearSolver/internalPoints/ipstate.cpp @@ -0,0 +1 @@ +#include "ipstate.h" diff --git a/NonLinearSolver/internalPoints/ipstate.h b/NonLinearSolver/internalPoints/ipstate.h new file mode 100644 index 0000000000..e69de29bb2 -- GitLab