source: local/greenstone3/windows-64bit/gs3-devel.bat@ 35713

Last change on this file since 35713 was 35591, checked in by davidb, 3 years ago

Don't use double-quotes in an DOS-style echo

File size: 1.3 KB
Line 
1@echo off
2
3::::
4:: Visual Studio
5::::
6
7:: The Start-Menu way to get a VisualStudio terminal open is:
8::
9:: %comspec% /k "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
10::
11:: To work within an existing terminal window, use 'call' instead:
12::
13pushd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\"
14call "VC\Auxiliary\Build\vcvars64.bat"
15popd
16
17echo Environment for Visual Studio 64-bit Compiler setup
18
19:::
20:: Legacy code that used to do the above
21:::
22
23:: :: pushd "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC"
24:: pushd "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC"
25:: call vcvarsall.bat amd64
26:: popd
27
28:: The following looks like an attempt to work through a Cygwin terminal directly
29:: (as this provides 'svn'). Not recently tested, so unclear if this works
30::
31::/cygdrive/c/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Auxiliary/Build/vcvarsall.bat
32
33
34::::
35:: Ant
36::::
37
38:: For ant prepare to work, now need wget (along with wgetrc file) on PATH
39:: In 'local/bin' folder there is an appropriate binary for this (actually
40:: an external SVN reference to Greenstone's winbin support tools area)
41
42echo Adding wget with its wgetrc to PATH for devel
43pushd bin
44set PATH=%CD%;%PATH%
45popd
46
47call gs3-setup.bat
48
49
Note: See TracBrowser for help on using the repository browser.