| 1 | /*
 | 
|---|
| 2 |  * Local environment settings for Lucide (Template)
 | 
|---|
| 3 |  *
 | 
|---|
| 4 |  * This file is used to specify local paths to external tools and libraries
 | 
|---|
| 5 |  * and to perform other site-specific project environment setup.
 | 
|---|
| 6 |  *
 | 
|---|
| 7 |  * NOTES:
 | 
|---|
| 8 |  *
 | 
|---|
| 9 |  *   This file is a template! Copy it to a file named LocalEnv.cmd in
 | 
|---|
| 10 |  *   the same directory and modify the copy to fit your local environment.
 | 
|---|
| 11 |  *
 | 
|---|
| 12 |  *   All paths in this file are specified using back slashes unless specified
 | 
|---|
| 13 |  *   otherwise.
 | 
|---|
| 14 |  */
 | 
|---|
| 15 | 
 | 
|---|
| 16 | /**
 | 
|---|
| 17 |  * Path to kBuild. Leave it empty if you already have kBuild in path.
 | 
|---|
| 18 |  */
 | 
|---|
| 19 | G.PATH_TOOL_KBUILD      = 'U:\Kbuild_workspace\trunk\kbuild'
 | 
|---|
| 20 | 
 | 
|---|
| 21 | /**
 | 
|---|
| 22 |  * Path to the GCC 4.x.x environment script. Leave it empty if you already have
 | 
|---|
| 23 |  * already setup the GCC 4.x.x environment.
 | 
|---|
| 24 |  */
 | 
|---|
| 25 | G.PATH_TOOL_GCC4_ENV    = 'U:\gcc492.cmd'
 | 
|---|
| 26 | 
 | 
|---|
| 27 | /**
 | 
|---|
| 28 |  * Path to SOM SDK. Leave it empty if you have OS/2 Toolkit 4.5 installed.
 | 
|---|
| 29 |  */
 | 
|---|
| 30 | G.PATH_SDK_SOM          = 'U:\Toolkit\som'
 | 
|---|
| 31 | 
 | 
|---|
| 32 | /**
 | 
|---|
| 33 |  * Paths to the OS2 tollkit. Needed to find sw.h perhaps other multimedia headers.
 | 
|---|
| 34 |  */
 | 
|---|
| 35 | G.C_INCLUDE_PATH        = 'X:\usr\include;X:\usr\include\os2tk45;%C_INCLUDE_PATH%'
 | 
|---|
| 36 | 
 | 
|---|
| 37 | /**
 | 
|---|
| 38 |  * Path where wic.exe and WPIRTL.DLL Leave it
 | 
|---|
| 39 |  * empty if you have them in paths.
 | 
|---|
| 40 |  */
 | 
|---|
| 41 | 
 | 
|---|
| 42 | G.PATH_TOOL_WARPIN      = 'J:\sys\install\WARPIN'
 | 
|---|
| 43 | 
 | 
|---|
| 44 | /**
 | 
|---|
| 45 |  * Path to the SOM environment script. Leave it empty if you already have
 | 
|---|
| 46 |  * setup the SOM environment.
 | 
|---|
| 47 |  */
 | 
|---|
| 48 | 
 | 
|---|
| 49 | G.PATH_TOOL_SOM_ENV     = 'U:\Toolkit\SOM\bin\somenv.cmd'     
 | 
|---|
| 50 | 
 | 
|---|
| 51 | /**
 | 
|---|
| 52 |  * Set MAKESHELL to either cmd.exe or 4os2.exe as sh chokes on backslashes
 | 
|---|
| 53 |  */
 | 
|---|
| 54 | 
 | 
|---|
| 55 | G.MAKESHELL            = 'G:\4os2\4os2.exe'
 | 
|---|
| 56 | 
 | 
|---|
| 57 | /**
 | 
|---|
| 58 |  * Set CWMMLICENCE to your build root/tools so create_def can find licence.txt
 | 
|---|
| 59 |  */
 | 
|---|
| 60 | 
 | 
|---|
| 61 | G.CWMMLICENCE          =  'U:\CWMM_Workspace\trunk\tools'
 | 
|---|