source: local/greenstone3/windows-32bit/gs3-devel.bat

Last change on this file was 35624, checked in by davidb, 3 years ago

Updated versions, having been tested working in conjunction with the Release Kit code

File size: 928 bytes
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\vcvars32.bat"
10::
11:: where cwd is:
12:: "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\"
13::
14:: To work within an existing terminal window, use 'call' instead:
15::
16pushd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\"
17call "VC\Auxiliary\Build\vcvars32.bat"
18popd
19
20echo Environment for Visual Studio 32-bit Compiler setup
21
22::::
23:: Ant (run as a developer)
24::::
25
26:: For 'ant prepare' to work, now need wget (along with wgetrc file) on PATH
27:: In 'local/bin' folder there is an appropriate binary for this (actually
28:: an external SVN reference to Greenstone's winbin support tools area)
29
30echo Adding wget with its wgetrc to PATH for devel
31pushd bin
32set PATH=%CD%;%PATH%
33popd
34
35call gs3-setup.bat
36
37
Note: See TracBrowser for help on using the repository browser.