mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 06:34:36 +00:00
Updated gitignore and Engine/bin for ticket #1
This commit is contained in:
parent
1cca6c95f2
commit
08d5ba86f7
593 changed files with 72474 additions and 0 deletions
31
Engine/bin/tools/nsis/app/Examples/nsExec/test.nsi
Normal file
31
Engine/bin/tools/nsis/app/Examples/nsExec/test.nsi
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
Name "nsExec Test"
|
||||
|
||||
OutFile "nsExec Test.exe"
|
||||
|
||||
ShowInstDetails show
|
||||
|
||||
Section "Silent MakeNSIS"
|
||||
nsExec::Exec '"${NSISDIR}\makensis.exe"'
|
||||
Pop $0 # return value/error/timeout
|
||||
DetailPrint ""
|
||||
DetailPrint " Return value: $0"
|
||||
DetailPrint ""
|
||||
SectionEnd
|
||||
|
||||
Section "MakeNSIS commands help"
|
||||
nsExec::ExecToLog '"${NSISDIR}\makensis.exe" /CMDHELP'
|
||||
Pop $0 # return value/error/timeout
|
||||
DetailPrint ""
|
||||
DetailPrint " Return value: $0"
|
||||
DetailPrint ""
|
||||
SectionEnd
|
||||
|
||||
Section "Output to variable"
|
||||
nsExec::ExecToStack '"${NSISDIR}\makensis.exe" /VERSION'
|
||||
Pop $0 # return value/error/timeout
|
||||
Pop $1 # printed text, up to ${NSIS_MAX_STRLEN}
|
||||
DetailPrint '"${NSISDIR}\makensis.exe" /VERSION printed: $1'
|
||||
DetailPrint ""
|
||||
DetailPrint " Return value: $0"
|
||||
DetailPrint ""
|
||||
SectionEnd
|
||||
Loading…
Add table
Add a link
Reference in a new issue