NSIS/SCons/config.py
wizou 752d7d239a Jim Park's Unicode NSIS merging - Step 1 : switch to TCHARs where relevant.
Compiler output is identical before & after this step

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/branches/wizou@6036 212acab6-be3b-0410-9dea-997c60f758d6
2010-03-24 17:22:56 +00:00

509 lines
11 KiB
Python

Import('defenv')
### Configuration options
cfg = Variables()
cfg.Add(
(
'NSIS_MAX_STRLEN',
'defines the maximum string length for internal variables and stack entries. 1024 should be plenty, but if you are doing crazy registry stuff, you might want to bump it up. Generally it adds about 16-32x the memory, so setting this to 4096 from 1024 will add around 64k of memory usage (not really a big deal, but not usually needed).',
1024
)
)
cfg.Add(
(
'NSIS_MAX_INST_TYPES',
'defines the maximum install types. Note that this should not exceed 32, ever.',
32
)
)
cfg.Add(
(
'NSIS_DEFAULT_LANG',
'defines the default language id NSIS will use if nothing else is defined in the script. Default value is 1033 which is English.',
1033
)
)
cfg.Add(
(
'NSIS_VARS_SECTION',
'defines the name of the PE section containing the runtime variables',
'.ndata'
)
)
cfg.Add(
BoolVariable(
'NSIS_CONFIG_UNINSTALL_SUPPORT',
"enables the uninstaller support. Turn it off if your installers don't need uninstallers. Adds less than 1kb.",
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_CONFIG_LICENSEPAGE',
'enables support for the installer to present a license page.',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_CONFIG_COMPONENTPAGE',
'enables support for the installer to present a page where you can select what sections are installed. with this disabled, all sections are installed by default',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_CONFIG_COMPONENTPAGE_ALTERNATIVE',
'enables an alternative components page behavior. Checkboxes will only be toggled when clicking on the checkbox itself and not on its label. .onMouseOverSection will only be called when the user selects the component and not when moving the mouse pointer over it.',
'no'
)
)
cfg.Add(
BoolVariable(
'NSIS_CONFIG_SILENT_SUPPORT',
'enables support for making installers that are completely silent.',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_CONFIG_VISIBLE_SUPPORT',
'enables support for making installers that are visible.',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_CONFIG_ENHANCEDUI_SUPPORT',
'enables support for CreateFont, SetCtlColors (used by some UIs), SetBrandingImage, .onGUIInit, etc.',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_CONFIG_COMPRESSION_SUPPORT',
'enables support for making installers that use compression (recommended).',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_COMPRESS_BZIP2_SMALLMODE',
"if defined, bzip2's decompressor uses bzip2's alternative decompression method that uses less runtime memory, at the expense of speed (and executable size). not recommended.",
'no'
)
)
cfg.Add(
(
'NSIS_COMPRESS_BZIP2_LEVEL',
'bzip2 compression window size. 1-9 is valid. 9 uses the most memory, but typically compresses best (recommended). 1 uses the least memory, but typically compresses the worst.',
9
)
)
cfg.Add(
BoolVariable(
'NSIS_CONFIG_CRC_SUPPORT',
'enables support for installer verification. HIGHLY recommended.',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_CONFIG_CRC_ANAL',
'makes the CRC verification extremely careful, meaning extra bytes on the end of file, or the first 512 bytes changing, will give error. Enable this if you are paranoid, otherwise leaving it off seems safe (and is less prone to reporting virii). If you will be digitally signing your installers, leave this off.',
'no'
)
)
cfg.Add(
BoolVariable(
'NSIS_CONFIG_LOG',
'enables the logging facility. turning this on (by uncommenting it) adds about 4kb, but can be useful in debugging your installers.',
'no'
)
)
cfg.Add(
BoolVariable(
'NSIS_CONFIG_LOG_ODS',
'makes the logging facility use OutputDebugString instead of a file.',
'no'
)
)
cfg.Add(
BoolVariable(
'NSIS_CONFIG_LOG_STDOUT',
'makes the logging facility use stdout instead of a file.',
'no'
)
)
cfg.Add(
BoolVariable(
'NSIS_CONFIG_LOG_TIMESTAMP',
'adds a timestamp to each log line.',
'no'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_BGBG',
'enables support for the blue (well, whatever color you want) gradient background window.',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_CODECALLBACKS',
'enables support for installer code callbacks. recommended, as it uses a minimum of space and allows for neat functionality.',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_MOVEONREBOOT',
'enables support for uninstallers that automatically delete themselves from the temp directory, as well as the reboot moving/deleting modes of Delete and Rename. Adds about 512 gay bytes..',
'yes'
)
)
### Instruction enabling configuration
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_ACTIVEXREG',
'enables activeX plug-in registration and deregistration, as well as CallInstDLL',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_INTOPTS',
'enables support for IntCmp, IntCmpU, IntOp, and IntFmt.',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_STROPTS',
'enables support for StrCmp, StrCpy, and StrLen, as well as Get*Local.',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_STACK',
'enables support for the stack (Push, Pop, Exch)',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_FILEFUNCTIONS',
'enables support for FileOpen,FileClose, FileSeek, FileRead, and FileWrite.',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_FINDFIRST',
'enables support for FindFirst, FindNext, and FindClose.',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_CREATESHORTCUT',
'enables support for CreateShortCut.',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_INIFILES',
'enables support for ReadINIStr and WriteINIStr.',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_REGISTRYFUNCTIONS',
'enables support for ReadRegStr, ReadRegDWORD, WriteRegStr, etc etc etc.',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_COPYFILES',
'enables support for CopyFiles',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_REBOOT',
'enables support for Reboot, IfRebootFlag, SetRebootFlag',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_FNUTIL',
'enables support for GetFullPathName, GetTempFileName, and SearchPath',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_EXECUTE',
'enables support for Exec and ExecWait',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_SHELLEXECUTE',
'enables support for ExecShell',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_GETDLLVERSION',
'enables support for GetDLLVersion',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_GETFILETIME',
'enables support for GetFileTime',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_HWNDS',
'enables support for FindWindow, SendMessage, and IsWindow',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_ENVIRONMENT',
'enables support for ReadEnvStr and ExpandEnvStrings',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_RMDIR',
'enables support for RMDir',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_FILE',
'enables support for File (extracting files)',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_DELETE',
'enables support for Delete (delete files)',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_RENAME',
'enables support for Rename (rename files)',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_MESSAGEBOX',
'enables support for MessageBox',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_VERSION_INFO',
'enables support for version information in the installer',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_FIX_DEFINES_IN_STRINGS',
'fixes defines inside defines and handles chars $ perfectly',
'no'
)
)
cfg.Add(
BoolVariable(
'NSIS_SUPPORT_STANDARD_PREDEFINES',
'enables standard predefines - __FILE__, __LINE__, __DATE__, __TIME__ and __TIMESTAMP__',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_LOCKWINDOW_SUPPORT',
'enables the LockWindow command',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_CONFIG_PLUGIN_SUPPORT',
'enables installer plug-ins support',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_FIX_COMMENT_HANDLING',
'fixes comment handling',
'yes'
)
)
cfg.Add(
BoolVariable(
'NSIS_CONFIG_CONST_DATA_PATH',
'determines if plugins, includes, stubs etc. are located in a constant path set at build-time',
defenv['PLATFORM'] != 'win32'
)
)
### Generate help
Help(cfg.GenerateHelpText(defenv))
### Apply configuration
env = Environment()
cfg.Update(env)
def AddValuedDefine(define):
defenv.Append(NSIS_CPPDEFINES = [(define, env[define])])
def AddBoolDefine(define):
if env[define]:
defenv.Append(NSIS_CPPDEFINES = [define])
def AddStringDefine(define):
defenv.Append(NSIS_CPPDEFINES = [(define, '"%s"' % env[define])])
AddValuedDefine('NSIS_MAX_STRLEN')
AddValuedDefine('NSIS_MAX_INST_TYPES')
AddValuedDefine('NSIS_DEFAULT_LANG')
AddBoolDefine('NSIS_CONFIG_UNINSTALL_SUPPORT')
AddBoolDefine('NSIS_CONFIG_LICENSEPAGE')
AddBoolDefine('NSIS_CONFIG_COMPONENTPAGE')
AddBoolDefine('NSIS_CONFIG_COMPONENTPAGE_ALTERNATIVE')
AddBoolDefine('NSIS_CONFIG_SILENT_SUPPORT')
AddBoolDefine('NSIS_CONFIG_VISIBLE_SUPPORT')
AddBoolDefine('NSIS_CONFIG_ENHANCEDUI_SUPPORT')
AddBoolDefine('NSIS_CONFIG_COMPRESSION_SUPPORT')
AddBoolDefine('NSIS_COMPRESS_BZIP2_SMALLMODE')
AddValuedDefine('NSIS_COMPRESS_BZIP2_LEVEL')
AddBoolDefine('NSIS_CONFIG_CRC_SUPPORT')
AddBoolDefine('NSIS_CONFIG_CRC_ANAL')
AddBoolDefine('NSIS_CONFIG_LOG')
AddBoolDefine('NSIS_CONFIG_LOG_ODS')
AddBoolDefine('NSIS_CONFIG_LOG_STDOUT')
AddBoolDefine('NSIS_CONFIG_LOG_TIMESTAMP')
AddBoolDefine('NSIS_SUPPORT_BGBG')
AddBoolDefine('NSIS_SUPPORT_CODECALLBACKS')
AddBoolDefine('NSIS_SUPPORT_MOVEONREBOOT')
AddBoolDefine('NSIS_SUPPORT_ACTIVEXREG')
AddBoolDefine('NSIS_SUPPORT_INTOPTS')
AddBoolDefine('NSIS_SUPPORT_STROPTS')
AddBoolDefine('NSIS_SUPPORT_STACK')
AddBoolDefine('NSIS_SUPPORT_FILEFUNCTIONS')
AddBoolDefine('NSIS_SUPPORT_FINDFIRST')
AddBoolDefine('NSIS_SUPPORT_CREATESHORTCUT')
AddBoolDefine('NSIS_SUPPORT_INIFILES')
AddBoolDefine('NSIS_SUPPORT_REGISTRYFUNCTIONS')
AddBoolDefine('NSIS_SUPPORT_COPYFILES')
AddBoolDefine('NSIS_SUPPORT_REBOOT')
AddBoolDefine('NSIS_SUPPORT_FNUTIL')
AddBoolDefine('NSIS_SUPPORT_EXECUTE')
AddBoolDefine('NSIS_SUPPORT_SHELLEXECUTE')
AddBoolDefine('NSIS_SUPPORT_GETDLLVERSION')
AddBoolDefine('NSIS_SUPPORT_GETFILETIME')
AddBoolDefine('NSIS_SUPPORT_HWNDS')
AddBoolDefine('NSIS_SUPPORT_ENVIRONMENT')
AddBoolDefine('NSIS_SUPPORT_RMDIR')
AddBoolDefine('NSIS_SUPPORT_FILE')
AddBoolDefine('NSIS_SUPPORT_DELETE')
AddBoolDefine('NSIS_SUPPORT_RENAME')
AddBoolDefine('NSIS_SUPPORT_MESSAGEBOX')
AddBoolDefine('NSIS_SUPPORT_VERSION_INFO')
AddBoolDefine('NSIS_FIX_DEFINES_IN_STRINGS')
AddBoolDefine('NSIS_SUPPORT_STANDARD_PREDEFINES')
AddBoolDefine('NSIS_LOCKWINDOW_SUPPORT')
AddBoolDefine('NSIS_CONFIG_PLUGIN_SUPPORT')
AddBoolDefine('NSIS_FIX_COMMENT_HANDLING')
AddBoolDefine('NSIS_CONFIG_CONST_DATA_PATH')
AddStringDefine('NSIS_VARS_SECTION')