forked from i-RIC/iricdev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversions.cmd
More file actions
38 lines (36 loc) · 831 Bytes
/
versions.cmd
File metadata and controls
38 lines (36 loc) · 831 Bytes
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
@echo off
REM
REM versions.cmd
REM
set VTK_VER=6.1.0
REM set HDF5_VER=1.8.13
set HDF5_VER=1.8.14
set CGNSLIB_VER=3.2.1
for /f %%h in ('git ls-remote https://github.com/i-RIC/iriclib.git HEAD') do set IRICLIB_VER=%%h
set SHAPELIB_VER=1.3.0
REM set QWT_VER=6.1.0
set QWT_VER=6.1.3
set GDAL_VER=1.11.2
set PROJ_VER=4.8.0
REM set NETCDF_VER=4.3.2
set NETCDF_VER=4.3.3
REM set GEOS_VER=3.4.2
set GEOS_VER=3.4.3
set BOOST_VER=1.59.0
set YAML_CPP_VER=0.5.2
set EXPAT_VER=2.2.6
set UDUNITS_VER=2.2.26
set OPENSSL_VER=1.0.2p
REM
REM replace . with _
REM
set BOOST_UVER=%BOOST_VER:.=_%
set EXPAT_UVER=R_%EXPAT_VER:.=_%
set OPENSSL_UVER=%OPENSSL_VER:.=_%
if [%BUILD_TOOLS%]==[] (
set BUILD_TOOLS="OFF"
)
:: nmake cannot create environment variables
set GENERATOR="Visual Studio 12 2013 Win64"
set SGEN=vs2013-x64
set VERSIONS_CMD_RUN=YES