-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.in
executable file
·101 lines (79 loc) · 3.74 KB
/
configure.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
## Copyright (C) 2010- Alexey Petrov
## Copyright (C) 2009-2010 Pebble Bed Modular Reactor (Pty) Limited (PBMR)
##
## This program is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## This program 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 General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/>.
##
## See http://sourceforge.net/projects/pythonflu
##
## Author : Alexey PETROV
##
#--------------------------------------------------------------------------------------
# Process this file with autoconf to produce a configure script
#--------------------------------------------------------------------------------------
AC_INIT([hybridFlu Project], [2.0], [[email protected]], [hybridFlu])
# AC_CONFIG_AUX_DIR defines an alternative directory where to find the auxiliary
# scripts such as config.guess, install-sh, ...
AC_CONFIG_AUX_DIR(admin)
AC_CONFIG_MACRO_DIR([admin])
AM_INIT_AUTOMAKE([tar-pax -Wno-portability])
echo "--------------------------------------------------------------------------------------"
CONFFLU_CHECK_OPENFOAM
echo
echo "--------------------------------------------------------------------------------------"
PYTHONFLU_CHECK_PYTHONFLU
echo
echo "--------------------------------------------------------------------------------------"
FOAM2VTK_CHECK_FOAM2VTK
echo
echo "--------------------------------------------------------------------------------------"
UNV2FOAM_CHECK_UNV2FOAM
echo
echo "--------------------------------------------------------------------------------------"
FOAM2MED_CHECK_FOAM2MED
echo
echo "--------------------------------------------------------------------------------------"
CONFFLU_CHECK_IPYTHON
echo
echo "--------------------------------------------------------------------------------------"
CONFFLU_CHECK_PYTHON_PMW
echo
echo "--------------------------------------------------------------------------------------"
CONFFLU_CHECK_PYTHON_TKINTER
echo
echo "--------------------------------------------------------------------------------------"
CONFFLU_CHECK_SALOME_GEOM
echo
echo "--------------------------------------------------------------------------------------"
CONFFLU_CHECK_SALOME_SMESH
echo
echo "--------------------------------------------------------------------------------------"
CONFFLU_CHECK_SALOME_VISU
echo
echo "--------------------------------------------------------------------------------------"
#CONFFLU_CHECK_SALOME_FOAM
echo
echo "--------------------------------------------------------------------------------------"
HYBRIDFLU_CHECK_SOLVER( icoFlux )
echo
echo "---------------------------- mandatory products --------------------------------"
CONFFLU_PRINT_SUMMURY( "openfoam_ok pythonflu_ok ipython_ok" )
echo
echo "---------------------------- optional products ---------------------------------"
CONFFLU_PRINT_SUMMURY( "foam2vtk_ok unv2foam_ok foam2med_ok python_pmw_ok python_tkinter_ok salome_geom_ok salome_smesh_ok salome_visu_ok salome_foam_ok icoFlux_ok" )
echo
echo "--------------------------------------------------------------------------------"
CONFFLU_CHECK_MANDATORY( "openfoam_ok pythonflu_ok ipython_ok" )
#--------------------------------------------------------------------------------------
AC_OUTPUT( [ bashrc ] )
echo "------------------------------------ OK -----------------------------------------"