added CPPPATH and LIBPATH options

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3984 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2005-04-21 19:52:06 +00:00
parent 40a31c125d
commit 66b441d3ab

View file

@ -56,6 +56,8 @@ opts.Add(PathOption('PREFIX', 'Installation prefix', GetLaunchDir()))
opts.Add(('MINGWPREFIX', 'MinGW toolset prefix', 0))
opts.Add(BoolOption('MSTOOLKIT', 'Use Microsoft Visual C++ Toolkit', 'no'))
opts.Add(BoolOption('DEBUG', 'Build executables with debugging information', 'no'))
opts.Add(PathOption('CPPPATH', 'Path to search for include files', None))
opts.Add(PathOption('LIBPATH', 'Path to search for libraries', None))
opts.Update(defenv)
Help(opts.GenerateHelpText(defenv))