Revert changes made for 3.0 release

This commit is contained in:
Shawn Hoffman
2011-08-20 14:05:43 -07:00
parent 35d1599724
commit 2309e36b28
17 changed files with 787 additions and 9 deletions

11
Installer/GetSVNRev.nsi Normal file
View File

@ -0,0 +1,11 @@
OutFile "GetSVNRev.exe"
SilentInstall silent
Section
; Create template for SubWCRev
FileOpen $R0 "svnrev_template.txt" w
FileWrite $R0 '!define PRODUCT_VERSION "$$WCREV$$"'
FileClose $R0
; Make a file with only rev # in it
Exec "..\Source\Core\Common\SubWCRev.exe ..\ svnrev_template.txt svnrev.txt"
SectionEnd