-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcreate-dirExt-prop.cmd
More file actions
48 lines (48 loc) · 2.52 KB
/
create-dirExt-prop.cmd
File metadata and controls
48 lines (48 loc) · 2.52 KB
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
@echo off
setlocal
set topdir=%~dp0
set topdir=%topdir:\=/%
call versions.cmd
@echo.[release]
@echo.expat = %topdir%lib/install/expat-%EXPAT_VER%/release/bin/
@echo.gdal = %topdir%lib/install/gdal-%GDAL_VER%/release/bin/
@echo.geos = %topdir%lib/install/geos-%GEOS_VER%/release/bin/
@echo.hdf5 = %topdir%lib/install/hdf5-%HDF5_VER%/bin/
@echo.iriclib = %topdir%lib/install/iriclib-%IRICLIB_VER%/bin/
@echo.libpng = %topdir%lib/install/libpng-%LIBPNG_VER%/release/bin/
@echo.netcdf = %topdir%lib/install/netcdf-c-%NETCDF_VER%/release/bin/
@echo.openssl = %topdir%lib/install/openssl-%OPENSSL_VER%/release/bin/
@echo.poco = %topdir%lib/install/poco-%POCO_VER%/bin/
@echo.proj = %topdir%lib/install/proj-%PROJ_VER%/release/bin/
@echo.qwt = %topdir%lib/install/Qwt-%QWT_VER%/lib/
@echo.shapelib = %topdir%lib/install/shapelib-%SHAPELIB_VER%/release/
@echo.sqlite3 = %topdir%lib/install/sqlite-src-3320300/release/
@echo.tiff = %topdir%lib/install/tiff-%LIBTIFF_VER%/release/bin/
@echo.udunits = %topdir%lib/install/udunits-%UDUNITS_VER%/release/bin/
@echo.vtk = %topdir%lib/install/VTK-%VTK_VER%/release/bin/
@echo.yaml-cpp = %topdir%lib/install/yaml-cpp-%YAML_CPP_VER%/release/bin
@echo.zlib = %topdir%lib/install/zlib-%ZLIB_VER%/bin/
@echo.
@echo.[debug]
@echo.expat = %topdir%lib/install/expat-%EXPAT_VER%/debug/bin/
@echo.gdal = %topdir%lib/install/gdal-%GDAL_VER%/debug/bin/
@echo.geos = %topdir%lib/install/geos-%GEOS_VER%/debug/bin/
@echo.hdf5 = %topdir%lib/install/hdf5-%HDF5_VER%/bin/
@echo.iriclib = %topdir%lib/install/iriclib-%IRICLIB_VER%/bin/
@echo.libpng = %topdir%lib/install/libpng-%LIBPNG_VER%/debug/bin/
@echo.netcdf = %topdir%lib/install/netcdf-c-%NETCDF_VER%/debug/bin/
@echo.openssl = %topdir%lib/install/openssl-%OPENSSL_VER%/debug/bin/
@echo.poco = %topdir%lib/install/poco-%POCO_VER%/bin/
@echo.proj = %topdir%lib/install/proj-%PROJ_VER%/debug/bin/
@echo.qwt = %topdir%lib/install/Qwt-%QWT_VER%/lib/
@echo.shapelib = %topdir%lib/install/shapelib-%SHAPELIB_VER%/debug/
@echo.sqlite3 = %topdir%lib/install/sqlite-src-3320300/debug/
@echo.tiff = %topdir%lib/install/tiff-%LIBTIFF_VER%/debug/bin/
@echo.udunits = %topdir%lib/install/udunits-%UDUNITS_VER%/debug/bin/
if "%DEBUG_LEAKS%"=="YES" (
@echo.vtk = %topdir%lib/install/VTK-%VTK_VER%/debug-vtk-leaks/bin/
) else (
@echo.vtk = %topdir%lib/install/VTK-%VTK_VER%/debug/bin/
)
@echo.yaml-cpp = %topdir%lib/install/yaml-cpp-%YAML_CPP_VER%/debug/bin
@echo.zlib = %topdir%lib/install/zlib-%ZLIB_VER%/bin/