-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetvars.bat
49 lines (37 loc) · 1.55 KB
/
setvars.bat
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
@echo off
REM *****************************************************************
REM SETVARS.BAT - Windows NT version
REM *****************************************************************
REM NOTE: Do not use this batch file directly, but copy it and
REM modify it as necessary for your own use!!
REM Setup environment variables for Git
REM Change this to point to your Open Watcom source tree - must be an 8.3 name!
set OWROOT=d:\ow
REM Change this to point to your existing Open Watcom installation
set WATCOM=c:\c\ow10
REM Change this to the PATH required by GhostScript for PDF creation on used host OS (optional)
set GHOSTSCRIPTPATH=c:\gs\gs7.04\bin;c:\gs\gs7.04\lib
REM Set this variable to 1 to get debug build
set DEBUG_BUILD=0
REM Set this variable to 1 to get default windowing support in clib
set DEFAULT_WINDOWING=0
REM Set this variable to 0 to suppress documentation build
set DOC_BUILD=1
REM Documentation related variables
REM set appropriate variables to point to Windows help compilers which you have installed
rem set WIN95HC=hcrtf
rem set HHC=hhc
REM check if DOS is available
if not '%OS%' == 'Windows_NT' goto dos_ok
if exist %SystemRoot%\system32\dosx.exe goto dos_ok
REM set OW_DOSBOX variables to point to DOSBOX emulator
REM it must not include any spaces, but it can be LFN
set OW_DOSBOX=dosbox
:dos_ok
REM Subdirectory to be used for bootstrapping
set OBJDIR=bootstrp
REM Subdirectory to be used for building prerequisite utilities
set PREOBJDIR=prebuild
REM Invoke the batch file for the common environment
call %OWROOT%\cmnvars.bat
cd %DEVDIR%