Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

config.h.in 2.6 KB

You have to be logged in to leave a comment. Sign 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
  1. /*
  2. * $Id$
  3. *
  4. * Copyright (c) 1991-2013 by P. Wessel, W. H. F. Smith, R. Scharroo, J. Luis, and F. Wobbe
  5. * See LICENSE.TXT file for copying and redistribution conditions.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU Lesser General Public License as published by
  9. * the Free Software Foundation; version 3 or any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Lesser General Public License for more details.
  15. *
  16. * Contact info: gmt.soest.hawaii.edu
  17. *--------------------------------------------------------------------
  18. */
  19. #pragma once
  20. #ifndef _CONFIG_H
  21. #define _CONFIG_H
  22. /* configured options and settings for GMT */
  23. #define GMT_PACKAGE_VERSION_MAJOR @GMT_PACKAGE_VERSION_MAJOR@
  24. #define GMT_PACKAGE_VERSION_MINOR @GMT_PACKAGE_VERSION_MINOR@
  25. #define GMT_PACKAGE_VERSION_PATCH @GMT_PACKAGE_VERSION_PATCH@
  26. #define GMT_PACKAGE_VERSION "@GMT_PACKAGE_VERSION@"
  27. #define GMT_SVN_REVISION "@SVN_VERSION@"
  28. #define GMT_PACKAGE_VERSION_WITH_SVN_REVISION "@GMT_PACKAGE_VERSION_WITH_SVN_REVISION@"
  29. #define GMT_VERSION_STRING "@GMT_VERSION_STRING@"
  30. #define GMT_LONG_VERSION_STRING "@GMT_LONG_VERSION_STRING@"
  31. #define GMT_TRAC_WIKI "@GMT_TRAC_WIKI@"
  32. /* path to executables/libs */
  33. #define GMT_BINDIR_RELATIVE "@GMT_BINDIR@"
  34. #define GMT_LIBDIR_RELATIVE "@GMT_LIBDIR@"
  35. /* path to shared files */
  36. #define GMT_SHARE_DIR "@CMAKE_INSTALL_PREFIX@/@GMT_DATADIR@"
  37. #define GMT_SHARE_DIR_RELATIVE "@GMT_DATADIR@"
  38. /* for running and debugging in ${GMT_BINARY_DIR} */
  39. #cmakedefine SUPPORT_EXEC_IN_BINARY_DIR
  40. #define GMT_SHARE_DIR_DEBUG "@GMT_SOURCE_DIR@/share"
  41. #define GMT_USER_DIR_DEBUG "@GMT_BINARY_DIR@/share"
  42. #define GMT_BINARY_DIR_SRC_DEBUG "@GMT_BINARY_DIR@/src"
  43. /* path to documentation */
  44. #define GMT_DOC_DIR "@CMAKE_INSTALL_PREFIX@/@GMT_DOCDIR@"
  45. /* min required GSHHG version and its netCDF extension */
  46. #define GSHHG_MIN_REQUIRED_VERSION {@GSHHG_MIN_REQUIRED_VERSION_MAJOR@, @GSHHG_MIN_REQUIRED_VERSION_MINOR@, @GSHHG_MIN_REQUIRED_VERSION_PATCH@}
  47. #define GSHHG_EXT "@GSHHG_EXT@"
  48. /* Name of core library */
  49. #define GMT_CORE_LIB_NAME "@GMT_CORE_LIB_NAME@"
  50. /* Name of supplemental library */
  51. #define GMT_SUPPL_LIB_NAME "@GMT_SUPPL_LIB_NAME@"
  52. /* Name of PSL library */
  53. #define PSL_LIB_NAME "@PSL_LIB_NAME@"
  54. /* Suffix of gmt executable, include dir, data dir, and plugin dir */
  55. #define GMT_INSTALL_NAME_SUFFIX "@GMT_INSTALL_NAME_SUFFIX@"
  56. #endif /* !_CONFIG_H */
  57. /* vim: set ft=c: */
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...