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

add_windows_cpack.txt 2.7 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
  1. # List of extra files to include in the installer
  2. # This file is prepared to use JL's installation paths.
  3. # Copy GDAL's 'data' directory to ${GMT_DATADIR}/GDAL_DATA [FALSE]:
  4. #set (GDAL_DATA_PATH C:/programs/compa_libs/gdal_GIT/compileds/VC14_64/data)
  5. # Copy PROJ's 'share' directory to ${GMT_DATADIR}/GDAL_DATA [FALSE]:
  6. #set (PROJ_DATA_PATH C:/programs/compa_libs/proj5_GIT/compileds/VC14_64/share/proj)
  7. # Set path to location of Ghostscript binaries (optional install)
  8. #set (GHOST_DATA_PATH C:/programs/compa_libs/ghostscript/bin)
  9. # Set path to location where the gmtmex is located.
  10. #set (GMTMEX_PATH "C:/progs_cygw/GMTdev/gmtmex/${GMTver}")
  11. SET (PATO_GDAL_BIN "C:/programs/compa_libs/gdal_GIT/compileds/${VC}_${BITAGE}/bin")
  12. SET (PATO_PROJ_BIN "C:/programs/compa_libs/proj5_GIT/compileds/${VC}_${BITAGE}/bin")
  13. SET (PATO_FFMPEG_BIN "C:/programs/ImageMagick")
  14. install (PROGRAMS
  15. ${PATO_GDAL_BIN}/gdaladdo.exe
  16. ${PATO_GDAL_BIN}/gdalbuildvrt.exe
  17. ${PATO_GDAL_BIN}/gdaldem.exe
  18. ${PATO_GDAL_BIN}/gdalenhance.exe
  19. ${PATO_GDAL_BIN}/gdalinfo.exe
  20. ${PATO_GDAL_BIN}/gdallocationinfo.exe
  21. ${PATO_GDAL_BIN}/gdalmanage.exe
  22. ${PATO_GDAL_BIN}/gdalserver.exe
  23. ${PATO_GDAL_BIN}/gdalsrsinfo.exe
  24. ${PATO_GDAL_BIN}/gdaltindex.exe
  25. ${PATO_GDAL_BIN}/gdaltransform.exe
  26. ${PATO_GDAL_BIN}/gdalwarp.exe
  27. ${PATO_GDAL_BIN}/gdal_contour.exe
  28. ${PATO_GDAL_BIN}/gdal_grid.exe
  29. ${PATO_GDAL_BIN}/gdal_rasterize.exe
  30. ${PATO_GDAL_BIN}/gdal_translate.exe
  31. ${PATO_GDAL_BIN}/gnmanalyse.exe
  32. ${PATO_GDAL_BIN}/gnmmanage.exe
  33. ${PATO_GDAL_BIN}/nearblack.exe
  34. ${PATO_GDAL_BIN}/ogr2ogr.exe
  35. ${PATO_GDAL_BIN}/ogrinfo.exe
  36. ${PATO_GDAL_BIN}/ogrlineref.exe
  37. ${PATO_GDAL_BIN}/ogrtindex.exe
  38. ${PATO_GDAL_BIN}/testepsg.exe
  39. DESTINATION ${GMT_BINDIR}
  40. COMPONENT Runtime)
  41. install (PROGRAMS
  42. ${PATO_PROJ_BIN}/cct.exe
  43. ${PATO_PROJ_BIN}/cs2cs.exe
  44. ${PATO_PROJ_BIN}/geod.exe
  45. ${PATO_PROJ_BIN}/gie.exe
  46. ${PATO_PROJ_BIN}/nad2bin.exe
  47. ${PATO_PROJ_BIN}/proj.exe
  48. ${PATO_PROJ_BIN}/projinfo.exe
  49. DESTINATION ${GMT_BINDIR}
  50. COMPONENT Runtime)
  51. install (PROGRAMS
  52. ${PATO_FFMPEG_BIN}/ffmpeg.exe
  53. DESTINATION ${GMT_BINDIR}
  54. COMPONENT Runtime)
  55. if (GDAL_DATA_PATH)
  56. install (DIRECTORY ${GDAL_DATA_PATH}/
  57. DESTINATION ${GMT_DATADIR}/GDAL_DATA
  58. COMPONENT GDALDATA)
  59. endif (GDAL_DATA_PATH)
  60. if (PROJ_DATA_PATH)
  61. install (DIRECTORY ${PROJ_DATA_PATH}/
  62. DESTINATION ${GMT_DATADIR}/proj
  63. COMPONENT GDALDATA)
  64. endif (PROJ_DATA_PATH)
  65. if (GHOST_DATA_PATH)
  66. install (PROGRAMS
  67. ${GHOST_DATA_PATH}/gswin${BITAGE}c.exe
  68. ${GHOST_DATA_PATH}/gsdll${BITAGE}.dll
  69. DESTINATION ${GMT_BINDIR}
  70. COMPONENT GHOSTSCRIPT)
  71. endif (GHOST_DATA_PATH)
  72. # Install the gmtmex on Windows
  73. if (GMTMEX_PATH)
  74. install (PROGRAMS
  75. "${GMTMEX_PATH}/gmtmex.mexw${BITAGE}"
  76. "${GMTMEX_PATH}/gmt.m"
  77. DESTINATION ${GMT_BINDIR}
  78. COMPONENT Runtime)
  79. endif (GMTMEX_PATH)
Tip!

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

Comments

Loading...