Added WinDef.nsh and friends to SCons and makensis.nsi
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5887 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
a6654feade
commit
7b7237f969
2 changed files with 16 additions and 0 deletions
|
@ -156,6 +156,13 @@ ${MementoSection} "NSIS Core Files (required)" SecCore
|
|||
File ..\Include\MultiUser.nsh
|
||||
File ..\Include\VB6RunTime.nsh
|
||||
File ..\Include\Util.nsh
|
||||
File ..\Include\WinDef.nsh
|
||||
|
||||
SetOutPath $INSTDIR\Include\Win
|
||||
File ..\Include\Win\WinDef.nsh
|
||||
File ..\Include\Win\WinError.nsh
|
||||
File ..\Include\Win\WinNT.nsh
|
||||
File ..\Include\Win\WinUser.nsh
|
||||
|
||||
SetOutPath $INSTDIR\Docs\StrFunc
|
||||
File ..\Docs\StrFunc\StrFunc.txt
|
||||
|
|
|
@ -13,13 +13,22 @@ includes = Split("""
|
|||
UpgradeDLL.nsh
|
||||
Util.nsh
|
||||
VB6RunTime.nsh
|
||||
WinDef.nsh
|
||||
WinMessages.nsh
|
||||
WinVer.nsh
|
||||
WordFunc.nsh
|
||||
x64.nsh
|
||||
""")
|
||||
|
||||
includesWin = [
|
||||
'Win/WinDef.nsh',
|
||||
'Win/WinError.nsh',
|
||||
'Win/WinNT.nsh',
|
||||
'Win/WinUser.nsh'
|
||||
]
|
||||
|
||||
Import('env')
|
||||
|
||||
env.DistributeInclude(includes)
|
||||
env.DistributeInclude(includesWin, path='Win')
|
||||
env.DistributeDocs('StrFunc.txt', path='StrFunc')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue