envvars.h 1.1 KB

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