]>
Commit | Line | Data |
---|---|---|
15b6757b | 1 | ///////////////////////////////////////////////////////////////////////////// |
3b88355f | 2 | // Name: envvars.h |
15b6757b FM |
3 | // Purpose: topic overview |
4 | // Author: wxWidgets team | |
526954c5 | 5 | // Licence: wxWindows licence |
15b6757b FM |
6 | ///////////////////////////////////////////////////////////////////////////// |
7 | ||
880efa2a | 8 | /** |
36c9828f | 9 | |
928f1a07 | 10 | @page overview_envvars Environment Variables |
36c9828f | 11 | |
928f1a07 FM |
12 | This section describes all environment variables that affect execution of |
13 | wxWidgets programs. | |
36c9828f | 14 | |
928f1a07 FM |
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.} | |
3b88355f | 29 | */ |
36c9828f | 30 |