]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: envvars.h | |
3 | // Purpose: topic overview | |
4 | // Author: wxWidgets team | |
5 | // Licence: wxWindows licence | |
6 | ///////////////////////////////////////////////////////////////////////////// | |
7 | ||
8 | /** | |
9 | ||
10 | @page overview_envvars Environment Variables | |
11 | ||
12 | This section describes all environment variables that affect execution of | |
13 | wxWidgets programs. | |
14 | ||
15 | @beginDefList | |
16 | @itemdef{WXTRACE, | |
17 | (Debug build only.) | |
18 | This variable can be set to a comma-separated list of trace masks used in | |
19 | wxLogTrace calls; wxLog::AddTraceMask is called for every mask | |
20 | in the list during wxWidgets initialization.} | |
21 | @itemdef{WXPREFIX, | |
22 | (Unix only.) | |
23 | Overrides installation prefix. Normally, the prefix | |
24 | is hard-coded and is the same as the value passed to @c configure via | |
25 | the @c --prefix switch when compiling the library (typically | |
26 | @c /usr/local or @c /usr). You can set WXPREFIX if you are for example | |
27 | distributing a binary version of an application and you don't know in advance | |
28 | where it will be installed.} | |
29 | */ | |
30 |