[Scummvm-cvs-logs] scummvm-tools master -> b52bb09d201bbc359efb72d004fe2d7c2283f2eb

Kirben kirben at optusnet.com.au
Mon Nov 21 06:45:46 CET 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-tools' repo located at https://github.com/scummvm/scummvm-tools .

Summary:
b52bb09d20 BUILD: Add extract_cge to mingw build, and Windows installer script.


Commit: b52bb09d201bbc359efb72d004fe2d7c2283f2eb
    https://github.com/scummvm/scummvm-tools/commit/b52bb09d201bbc359efb72d004fe2d7c2283f2eb
Author: Travis Howell (kirben at optusnet.com.au)
Date: 2011-11-20T21:45:23-08:00

Commit Message:
BUILD: Add extract_cge to mingw build, and Windows installer script.

Changed paths:
  A dists/scummvmtools.rc.in
    Makefile
    dists/win32/ScummVM Tools.iss



diff --git a/Makefile b/Makefile
index df70095..b323686 100644
--- a/Makefile
+++ b/Makefile
@@ -105,6 +105,7 @@ win32dist:   all
 	$(STRIP) deriven.exe -o $(WIN32PATH)/tools/deriven.exe
 	$(STRIP) descumm.exe -o $(WIN32PATH)/tools/descumm.exe
 	$(STRIP) desword2.exe -o $(WIN32PATH)/tools/desword2.exe
+	$(STRIP) extract_cge.exe -o $(WIN32PATH)/tools/extract_cge.exe
 	$(STRIP) extract_mohawk.exe -o $(WIN32PATH)/tools/extract_mohawk.exe
 	$(STRIP) gob_loadcalc.exe -o $(WIN32PATH)/tools/gob_loadcalc.exe
 	$(STRIP) scummvm-tools.exe -o $(WIN32PATH)/tools/scummvm-tools.exe
diff --git a/dists/scummvmtools.rc.in b/dists/scummvmtools.rc.in
new file mode 100644
index 0000000..6991baf
--- /dev/null
+++ b/dists/scummvmtools.rc.in
@@ -0,0 +1,45 @@
+#include "winresrc.h"
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#define FILE 256
+#define IDI_ICON  1001
+
+IDI_ICON               ICON    DISCARDABLE     "gui/media/scummvmtools.ico"
+
+VS_VERSION_INFO VERSIONINFO
+ FILEVERSION     @VER_MAJOR@, at VER_MINOR@, at VER_PATCH@,0
+ PRODUCTVERSION  @VER_MAJOR@, at VER_MINOR@, at VER_PATCH@,0
+ FILEFLAGSMASK   VS_FFI_FILEFLAGSMASK
+#ifdef _DEBUG
+ FILEFLAGS       VS_FF_DEBUG
+#else
+ FILEFLAGS       0
+#endif
+ FILEOS          VOS_NT_WINDOWS32
+ FILETYPE        VFT_APP
+ FILESUBTYPE     VFT2_UNKNOWN
+BEGIN
+    BLOCK "StringFileInfo"
+    BEGIN
+        BLOCK "040904b0" // US English, Unicode
+        BEGIN
+            VALUE "Comments", "Look! A three headed monkey (TM)! .. Nice use of the TM!\0"
+            VALUE "FileDescription", "http://www.scummvm.org/\0"
+            VALUE "FileVersion", "@VERSION@\0"
+            VALUE "InternalName", "scummvm\0"
+            VALUE "LegalCopyright", "Copyright © 2001-2011 The ScummVM Team\0"
+            VALUE "LegalTrademarks", "'SCUMM', and all SCUMM games are a TM of LucasArts. Simon The Sorcerer is a TM of AdventureSoft. Beneath a Steel Sky and Broken Sword are a TM of Revolution. Flight of the Amazon Queen is a TM of John Passfield and Steve Stamatiadis. \0"
+            VALUE "OriginalFilename", "scummvm-tools.exe\0"
+            VALUE "ProductName", "ScummVM Tools\0"
+            VALUE "ProductVersion", "@VERSION@\0"
+        END
+    END
+
+    BLOCK "VarFileInfo"
+    BEGIN
+        VALUE "Translation", 0x409, 1200 // US English, Unicode
+    END
+END
diff --git a/dists/win32/ScummVM Tools.iss b/dists/win32/ScummVM Tools.iss
index 344a514..00d1d29 100755
--- a/dists/win32/ScummVM Tools.iss	
+++ b/dists/win32/ScummVM Tools.iss	
@@ -32,6 +32,7 @@ Source: "tools\dekyra.exe"; DestDir: "{app}"; Flags: ignoreversion
 Source: "tools\deriven.exe"; DestDir: "{app}"; Flags: ignoreversion 

 Source: "tools\descumm.exe"; DestDir: "{app}"; Flags: ignoreversion 

 Source: "tools\desword2.exe"; DestDir: "{app}"; Flags: ignoreversion 

+Source: "tools\extract_cge.exe"; DestDir: "{app}"; Flags: ignoreversion 

 Source: "tools\extract_mohawk.exe"; DestDir: "{app}"; Flags: ignoreversion 

 Source: "tools\gob_loadcalc.exe"; DestDir: "{app}"; Flags: ignoreversion 

 Source: "tools\NEWS.txt"; DestDir: "{app}"; Flags: ignoreversion







More information about the Scummvm-git-logs mailing list