summaryrefslogtreecommitdiffstats
path: root/src/mixxx.rc
diff options
context:
space:
mode:
authorRJ Ryan <rryan@mixxx.org>2013-06-19 00:46:54 -0400
committerRJ Ryan <rryan@mixxx.org>2013-06-19 00:46:54 -0400
commit25d57b59dff3947212909634864dd82365c9606b (patch)
treef0d0f8a048f8ed2f45c5ff015fc96891662f72f1 /src/mixxx.rc
parente50f9f168fa08f2be6d0f13e8a225bbcc9de09bb (diff)
Moving mixxx/* to the root. A new era begins!
Diffstat (limited to 'src/mixxx.rc')
-rw-r--r--src/mixxx.rc68
1 files changed, 68 insertions, 0 deletions
diff --git a/src/mixxx.rc b/src/mixxx.rc
new file mode 100644
index 0000000000..2439f96860
--- /dev/null
+++ b/src/mixxx.rc
@@ -0,0 +1,68 @@
+IDI_ICON1 ICON DISCARDABLE "res/images/ic_mixxx.ico"
+
+#include <windows.h>
+#include <defs_version.h>
+
+#include "mixxx.rc.include"
+
+#define VER_PRODUCTNAME_STR "Mixxx\0"
+#define VER_FILEDESCRIPTION_STR "Mixxx digital DJ software"
+#define VER_COMPANYNAME_STR "The Mixxx Development Team"
+#define VER_LEGALCOPYRIGHT_STR "Copyright ©2001-" CUR_YEAR " The Mixxx Development Team and/or its subsidiary(-ies).\0"
+#define VER_ORIGINALFILENAME_STR "Mixxx.exe"
+
+#if defined(AMD64) || defined(INTEL64) || defined(EM64T) || defined(x86_64)
+ #define BITS " x64"
+#elif defined(IA64)
+ #define BITS " Itanium"
+#else
+ #define BITS ""
+#endif
+
+#define VER_FILEVERSION_STR VERSION BITS "\0"
+#define VER_PRODUCTVERSION_STR VERSION BITS "\0"
+
+#ifndef DEBUG
+ #define VER_DEBUG 0
+#else
+ #define VER_DEBUG VS_FF_DEBUG
+#endif
+
+#ifndef PRERELEASE
+ #define VER_PRERELEASE 0
+#else
+ #define VER_PRERELEASE VS_FF_PRERELEASE
+#endif
+
+VS_VERSION_INFO VERSIONINFO
+FILEVERSION VER_FILEVERSION
+PRODUCTVERSION VER_PRODUCTVERSION
+FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
+FILEFLAGS (VER_DEBUG|VER_PRERELEASE)
+FILEOS VOS__WINDOWS32
+FILETYPE VFT_APP
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904E4"
+ BEGIN
+ VALUE "CompanyName", VER_COMPANYNAME_STR
+ VALUE "FileDescription", VER_FILEDESCRIPTION_STR
+ VALUE "FileVersion", VER_FILEVERSION_STR
+ //VALUE "InternalName", VER_INTERNALNAME_STR
+ VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR
+ //VALUE "LegalTrademarks1", VER_LEGALTRADEMARKS1_STR
+ //VALUE "LegalTrademarks2", VER_LEGALTRADEMARKS2_STR
+ VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR
+ VALUE "ProductName", VER_PRODUCTNAME_STR
+ VALUE "ProductVersion", VER_PRODUCTVERSION_STR
+ END
+ END
+
+ //BLOCK "VarFileInfo"
+ //BEGIN
+ // English language (0x409) Unicode (1200).
+ // VALUE "Translation", 0x409, 1200
+
+ //END
+END \ No newline at end of file