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

CMakeLists.txt 1.4 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
  1. #
  2. #
  3. # Copyright (c) 1991-2021 by the GMT Team (https://www.generic-mapping-tools.org/team.html)
  4. # See LICENSE.TXT file for copying and redistribution conditions.
  5. #
  6. # This program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU Lesser General Public License as published by
  8. # the Free Software Foundation; version 3 or any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU Lesser General Public License for more details.
  14. #
  15. # Contact info: www.generic-mapping-tools.org
  16. #-------------------------------------------------------------------------------
  17. #
  18. # share/tools/CMakeLists.txt
  19. #
  20. configure_file (gmt5syntax.in gmt5syntax @ONLY)
  21. install (PROGRAMS
  22. gmt_functions.sh
  23. gmt_aliases.csh
  24. gmt_links.sh
  25. gmt_prepmex.sh
  26. gmt_uninstall.sh
  27. ncdeflate
  28. ${CMAKE_CURRENT_BINARY_DIR}/gmt5syntax
  29. DESTINATION ${GMT_DATADIR}/tools
  30. COMPONENT Runtime)
  31. if (NOT DEFINED BASH_COMPLETION_DIR)
  32. set (BASH_COMPLETION_DIR etc/bash_completion.d)
  33. endif (NOT DEFINED BASH_COMPLETION_DIR)
  34. if (GMT_INSTALL_TRADITIONAL_FOLDERNAMES)
  35. set (BASH_COMPLETION_DIR ${GMT_DATADIR}/tools)
  36. endif (GMT_INSTALL_TRADITIONAL_FOLDERNAMES)
  37. install (FILES
  38. gmt_completion.bash
  39. DESTINATION ${BASH_COMPLETION_DIR}
  40. COMPONENT Runtime)
Tip!

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

Comments

Loading...