Added NSIS_CONFIG_LOG_ODS that makes the log use OutputDebugString instead of install.log.
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3194 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
c49208b861
commit
ac025c139c
6 changed files with 49 additions and 10 deletions
|
@ -115,7 +115,12 @@
|
|||
// turning this on (by uncommenting it) adds about
|
||||
// 4kb, but can be useful in debugging your installers.
|
||||
// NOT ENABLED BY DEFAULT.
|
||||
//#define NSIS_CONFIG_LOG
|
||||
// #define NSIS_CONFIG_LOG
|
||||
|
||||
// NSIS_CONFIG_LOG_ODS makes the logging facility
|
||||
// use OutputDebugString instead of a file.
|
||||
// NOT ENABLED BY DEFAULT.
|
||||
// #define NSIS_CONFIG_LOG_ODS
|
||||
|
||||
// NSIS_SUPPORT_BGBG enables support for the blue (well, whatever
|
||||
// color you want) gradient background window.
|
||||
|
@ -275,6 +280,11 @@
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef NSIS_CONFIG_LOG_ODS
|
||||
#ifndef NSIS_CONFIG_LOG
|
||||
#error NSIS_CONFIG_LOG_ODS relies on NSIS_CONFIG_LOG, but NSIS_CONFIG_LOG is not defined
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(NSIS_CONFIG_CRC_SUPPORT) && defined(NSIS_CONFIG_VISIBLE_SUPPORT)
|
||||
#define _NSIS_CONFIG_VERIFYDIALOG
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue