-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathgmt-config.in
executable file
·234 lines (197 loc) · 5.51 KB
/
gmt-config.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
#!/usr/bin/env bash
#--------------------------------------------------------------------
#
# Copyright (c) 1991-2025 by the GMT Team (https://www.generic-mapping-tools.org/team.html)
# See LICENSE.TXT file for copying and redistribution conditions.
#
# This program 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; version 3 or 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 Lesser General Public License for more details.
#
# Contact info: www.generic-mapping-tools.org
#
# gmt-config simply reports various paths and settings that are useful
# to developers that need to include/link GMT resources.
#--------------------------------------------------------------------*/
#
GMT_EXEDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Use the executable dir to figure out the lib and include dirs
GMT_TOP=$(dirname $GMT_EXEDIR)
CONFIG_INCLUDEDIR="$GMT_TOP/@GMT_INCLUDEDIR@"
# Check if the configure include directory exist. If so then we craft
# the cflags and lib settings off its parent, else stick with config.
if [ -d $CONFIG_INCLUDEDIR ]; then
CONFIG_CFLAGS="-I$CONFIG_INCLUDEDIR"
CONFIG_LIBDIR="$GMT_TOP/@GMT_LIBDIR@"
else
CONFIG_CFLAGS="-I@CMAKE_INSTALL_PREFIX@/@GMT_INCLUDEDIR@"
CONFIG_INCLUDEDIR="@CMAKE_INSTALL_PREFIX@/@GMT_INCLUDEDIR@"
CONFIG_LIBDIR="@CMAKE_INSTALL_PREFIX@/@GMT_LIBDIR@"
fi
CONFIG_LIBS="-L$CONFIG_LIBDIR -lgmt"
CONFIG_CC="@CMAKE_C_COMPILER@"
CONFIG_DATADIR=$($GMT_EXEDIR/gmt --show-datadir)
CONFIG_DATASERVER=$($GMT_EXEDIR/gmt --show-dataserver)
CONFIG_PLUGINDIR=$($GMT_EXEDIR/gmt --show-plugindir)
CONFIG_DEP_LIBS="@NETCDF_LIBRARIES@ @GMT_OPTIONAL_LIBRARIES@"
CONFIG_GSHHG=$($GMT_EXEDIR/gmt gmtget DIR_GSHHG)
CONFIG_DCW=$($GMT_EXEDIR/gmt gmtget DIR_DCW)
CONFIG_PREFIX="@CMAKE_INSTALL_PREFIX@"
CONFIG_VERSION="@GMT_PACKAGE_VERSION_WITH_GIT_REVISION@"
if [ "@HAVE_FFTW3F@" == "TRUE" ]; then
CONFIG_FFTW_ENABLED=yes
else
CONFIG_FFTW_ENABLED=no
fi
if [ "@HAVE_PCRE@" == "TRUE" ] || [ "@HAVE_PCRE2@" == "TRUE" ]; then
CONFIG_PCRE_ENABLED=yes
else
CONFIG_PCRE_ENABLED=no
fi
if [ "@HAVE_LAPACK@" == "TRUE" ]; then
CONFIG_LAPACK_ENABLED=yes
else
CONFIG_LAPACK_ENABLED=no
fi
if [ "@GMT_CONFIG_GTHREAD_MESSAGE@" == "enabled" ]; then
CONFIG_GTHREAD_ENABLED=yes
else
CONFIG_GTHREAD_ENABLED=no
fi
if [ "@GMT_CONFIG_OPENMP_MESSAGE@" == "enabled" ]; then
CONFIG_OPENMP_ENABLED=yes
else
CONFIG_OPENMP_ENABLED=no
fi
if [ @CMAKE_SIZEOF_VOID_P@ -eq 8 ]; then
CONFIG_BITS=64
else
CONFIG_BITS=32
fi
usage()
{
cat <<EOF
Usage: gmt-config [OPTIONS]
Available values for OPTIONS include:
--help display this help message and exit
--all display all options
--bits whether library is build 32-bit or 64-bit
--cc C compiler
--cflags pre-processor and compiler flags
--datadir GMT's data directories
--dataserver URL of the remote GMT data server
--dcw location of used DCW
--dep-libs dependent libraries
--gshhg location of used GSHHG
--has-fftw whether FFTW is used in build
--has-pcre whether PCRE is used in build
--has-lapack whether LAPACK is used in build
--has-openmp whether GMT was built with OpenMP support
--has-gthread whether GMT was built with GTHREAD support
--includedir include directory
--libdir library directory
--libs library linking information
--plugindir GMT's plugin directory
--prefix install prefix
--version library version
EOF
exit $1
}
all()
{
cat <<EOF
This GMT $CONFIG_VERSION has been built with the following features:
--cc -> $CONFIG_CC
--cflags -> $CONFIG_CFLAGS
--libs -> $CONFIG_LIBS
--bits -> $CONFIG_BITS
--datadir -> $CONFIG_DATADIR
--dataserver -> $CONFIG_DATASERVER
--dcw -> $CONFIG_DCW
--dep-libs -> ${CONFIG_DEP_LIBS//;/ }
--gshhg -> $CONFIG_GSHHG
--has-fftw -> $CONFIG_FFTW_ENABLED
--has-pcre -> $CONFIG_PCRE_ENABLED
--has-lapack -> $CONFIG_LAPACK_ENABLED
--has-openmp -> $CONFIG_OPENMP_ENABLED
--has-gthred -> $CONFIG_GTHREAD_ENABLED
--prefix -> $CONFIG_PREFIX
--includedir -> $CONFIG_INCLUDEDIR
--libdir -> $CONFIG_LIBDIR
--plugindir -> $CONFIG_PLUGINDIR
--version -> $CONFIG_VERSION
EOF
}
[ -z "$1" ] && usage 1 1>&2
for arg in "$@"; do
case $arg in
--all)
all
;;
--bits)
echo $CONFIG_BITS
;;
--cc)
echo $CONFIG_CC
;;
--cflags)
echo $CONFIG_CFLAGS
;;
--datadir)
echo $CONFIG_DATADIR
;;
--dataserver)
echo $CONFIG_DATASERVER
;;
--dcw)
echo $CONFIG_DCW
;;
--dep-libs)
echo ${CONFIG_DEP_LIBS//;/ }
;;
--gshhg)
echo $CONFIG_GSHHG
;;
--has-fftw)
echo $CONFIG_FFTW_ENABLED
;;
--has-pcre)
echo $CONFIG_PCRE_ENABLED
;;
--has-lapack)
echo $CONFIG_LAPACK_ENABLED
;;
--has-openmp)
echo $CONFIG_OPENMP_ENABLED
;;
--has-gthread)
echo $CONFIG_GTHREAD_ENABLED
;;
--includedir)
echo $CONFIG_INCLUDEDIR
;;
--libdir)
echo $CONFIG_LIBDIR
;;
--libs)
echo $CONFIG_LIBS
;;
--plugindir)
echo $CONFIG_PLUGINDIR
;;
--prefix)
echo $CONFIG_PREFIX
;;
--version)
echo $CONFIG_VERSION
;;
*)
usage 1 1>&2
;;
esac
done