]>
Commit | Line | Data |
---|---|---|
15b6757b FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: envvars | |
3 | // Purpose: topic overview | |
4 | // Author: wxWidgets team | |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | /*! | |
36c9828f | 10 | |
15b6757b | 11 | @page envvars_overview Environment variables |
36c9828f | 12 | |
15b6757b FM |
13 | This section describes all environment variables that affect execution of |
14 | wxWidgets programs. | |
36c9828f FM |
15 | |
16 | ||
17 | ||
18 | ||
19 | ||
15b6757b | 20 | @c WXTRACE |
36c9828f FM |
21 | |
22 | ||
23 | ||
24 | ||
15b6757b FM |
25 | (Debug build only.) |
26 | This variable can be set to a comma-separated list of trace masks used in | |
27 | #wxLogTrace calls; | |
28 | wxLog::AddTraceMask is called for every mask | |
29 | in the list during wxWidgets initialization. | |
36c9828f FM |
30 | |
31 | ||
32 | ||
33 | ||
34 | ||
15b6757b | 35 | @c WXPREFIX |
36c9828f FM |
36 | |
37 | ||
38 | ||
39 | ||
15b6757b FM |
40 | (Unix only.) |
41 | Overrides installation prefix. Normally, the prefix | |
42 | is hard-coded and is the same as the value passed to @c configure via | |
43 | the @c --prefix switch when compiling the library (typically | |
44 | @c /usr/local or @c /usr). You can set WXPREFIX if you are for example | |
45 | distributing a binary version of an application and you don't know in advance | |
46 | where it will be installed. | |
36c9828f FM |
47 | |
48 | ||
49 | ||
50 | ||
51 | ||
15b6757b | 52 | @c WXMODE |
36c9828f FM |
53 | |
54 | ||
55 | ||
56 | ||
15b6757b FM |
57 | (wxMGL only.) |
58 | Sets MGL video mode. The value must be in form | |
59 | @e widthx@e height-@e depth. The default is @c 640x480-16. | |
36c9828f FM |
60 | |
61 | ||
62 | ||
63 | ||
64 | ||
15b6757b | 65 | @c WXSTDERR |
36c9828f FM |
66 | |
67 | ||
68 | ||
69 | ||
15b6757b FM |
70 | (wxMGL only.) |
71 | Redirects stderr output to a file. | |
36c9828f | 72 | |
15b6757b | 73 | */ |
36c9828f FM |
74 | |
75 |