]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: envvars | |
3 | // Purpose: topic overview | |
4 | // Author: wxWidgets team | |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | /*! | |
10 | ||
11 | @page envvars_overview Environment variables | |
12 | ||
13 | This section describes all environment variables that affect execution of | |
14 | wxWidgets programs. | |
15 | ||
16 | ||
17 | ||
18 | ||
19 | ||
20 | @c WXTRACE | |
21 | ||
22 | ||
23 | ||
24 | ||
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. | |
30 | ||
31 | ||
32 | ||
33 | ||
34 | ||
35 | @c WXPREFIX | |
36 | ||
37 | ||
38 | ||
39 | ||
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. | |
47 | ||
48 | ||
49 | ||
50 | ||
51 | ||
52 | @c WXMODE | |
53 | ||
54 | ||
55 | ||
56 | ||
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. | |
60 | ||
61 | ||
62 | ||
63 | ||
64 | ||
65 | @c WXSTDERR | |
66 | ||
67 | ||
68 | ||
69 | ||
70 | (wxMGL only.) | |
71 | Redirects stderr output to a file. | |
72 | ||
73 | */ | |
74 | ||
75 |