1 diff --git a/CMakeLists.txt b/CMakeLists.txt
7 +#-------------------------------------------------------------------------------
9 +# | ____| _| |_ / __ \ /\ | \/ |
10 +# | |__ _ __ ___ ___ / \| | | | / \ | \ / |
11 +# | __| '__/ _ \/ _ ( (| |) ) | | |/ /\ \ | |\/| |
12 +# | | | | | __/ __/\_ _/| |__| / ____ \| | | |
13 +# |_| |_| \___|\___| |_| \____/_/ \_\_| |_|
15 +# FreeFOAM: The Cross-Platform CFD Toolkit
17 +# Copyright (C) 2008-2011 Michael Wild <themiwi@users.sf.net>
18 +# Gerber van der Graaf <gerber_graaf@users.sf.net>
19 +#-------------------------------------------------------------------------------
21 +# This file is part of FreeFOAM.
23 +# FreeFOAM is free software; you can redistribute it and/or modify it
24 +# under the terms of the GNU General Public License as published by the
25 +# Free Software Foundation; either version 2 of the License, or (at your
26 +# option) any later version.
28 +# FreeFOAM is distributed in the hope that it will be useful, but WITHOUT
29 +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
30 +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
33 +# You should have received a copy of the GNU General Public License
34 +# along with FreeFOAM; if not, write to the Free Software Foundation,
35 +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
37 +#-------------------------------------------------------------------------------
39 +cmake_minimum_required(VERSION 2.8)
48 +add_library(foam_ccmio ${SRCS})
50 +install(TARGETS foam_ccmio
51 + LIBRARY DESTINATION lib
52 + ARCHIVE DESTINATION lib
53 + RUNTIME DESTINATION bin
56 +install(FILES libccmio/ccmio.h libccmio/ccmiotypes.h
57 + DESTINATION include/libccmio
60 +# ------------------------- vim: set sw=2 sts=2 et: --------------- end-of-file
61 diff --git a/files.cmake b/files.cmake
63 index 0000000..6227269
67 +#-------------------------------------------------------------------------------
68 +# ______ _ ____ __ __
69 +# | ____| _| |_ / __ \ /\ | \/ |
70 +# | |__ _ __ ___ ___ / \| | | | / \ | \ / |
71 +# | __| '__/ _ \/ _ ( (| |) ) | | |/ /\ \ | |\/| |
72 +# | | | | | __/ __/\_ _/| |__| / ____ \| | | |
73 +# |_| |_| \___|\___| |_| \____/_/ \_\_| |_|
75 +# FreeFOAM: The Cross-Platform CFD Toolkit
77 +# Copyright (C) 2008-2011 Michael Wild <themiwi@users.sf.net>
78 +# Gerber van der Graaf <gerber_graaf@users.sf.net>
79 +#-------------------------------------------------------------------------------
81 +# This file is part of FreeFOAM.
83 +# FreeFOAM is free software; you can redistribute it and/or modify it
84 +# under the terms of the GNU General Public License as published by the
85 +# Free Software Foundation; either version 2 of the License, or (at your
86 +# option) any later version.
88 +# FreeFOAM is distributed in the hope that it will be useful, but WITHOUT
89 +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90 +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
93 +# You should have received a copy of the GNU General Public License
94 +# along with FreeFOAM; if not, write to the Free Software Foundation,
95 +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
96 +#-------------------------------------------------------------------------------
99 + libadf/ADF_fortran_2_c.c
100 + libadf/ADF_interface.c
101 + libadf/ADF_internals.c
103 + libccmio/ccmiocore.c
104 + libccmio/ccmioprivate.c
105 + libccmio/ccmioutility.c
107 + libccmio/ccmioversion.c
110 +# ------------------------- vim: set sw=2 sts=2 et: --------------- end-of-file