mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 14:44: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
29
Engine/bin/tools/nsis/app/Examples/VersionInfo.nsi
Normal file
29
Engine/bin/tools/nsis/app/Examples/VersionInfo.nsi
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
; VersionInfo.nsi
|
||||
;
|
||||
; This script shows you how to add version information to an installer.
|
||||
; Windows shows this information on the Version tab of the File properties.
|
||||
|
||||
;--------------------------------
|
||||
|
||||
Name "Version Info"
|
||||
|
||||
OutFile "VersionInfo.exe"
|
||||
|
||||
LoadLanguageFile "${NSISDIR}\Contrib\Language files\English.nlf"
|
||||
;--------------------------------
|
||||
;Version Information
|
||||
|
||||
VIProductVersion "1.2.3.4"
|
||||
VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductName" "Test Application"
|
||||
VIAddVersionKey /LANG=${LANG_ENGLISH} "Comments" "A test comment"
|
||||
VIAddVersionKey /LANG=${LANG_ENGLISH} "CompanyName" "Fake company"
|
||||
VIAddVersionKey /LANG=${LANG_ENGLISH} "LegalTrademarks" "Test Application is a trademark of Fake company"
|
||||
VIAddVersionKey /LANG=${LANG_ENGLISH} "LegalCopyright" "Copyright Fake company"
|
||||
VIAddVersionKey /LANG=${LANG_ENGLISH} "FileDescription" "Test Application"
|
||||
VIAddVersionKey /LANG=${LANG_ENGLISH} "FileVersion" "1.2.3"
|
||||
|
||||
;--------------------------------
|
||||
|
||||
Section ""
|
||||
|
||||
SectionEnd
|
||||
Loading…
Add table
Add a link
Reference in a new issue