aboutsummaryrefslogtreecommitdiffstats
path: root/src/windows/versioninfo.rc
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2017-08-01 00:54:21 -0700
committerGitHub <noreply@github.com>2017-08-01 00:54:21 -0700
commit329873efd1e8ad738d6c2de09d1b0bcadb7b689e (patch)
tree59b427278db32ef01e4249d1450044a76e557fcb /src/windows/versioninfo.rc
parentMerge pull request #491 from jonls/python-controller (diff)
parentAdd Windows resources (diff)
downloadredshift-ng-329873efd1e8ad738d6c2de09d1b0bcadb7b689e.tar.gz
redshift-ng-329873efd1e8ad738d6c2de09d1b0bcadb7b689e.tar.bz2
redshift-ng-329873efd1e8ad738d6c2de09d1b0bcadb7b689e.tar.xz
Merge pull request #490 from jonls/windows-resources
Add icon for Windows build
Diffstat (limited to 'src/windows/versioninfo.rc')
-rw-r--r--src/windows/versioninfo.rc20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/windows/versioninfo.rc b/src/windows/versioninfo.rc
new file mode 100644
index 0000000..9ede49d
--- /dev/null
+++ b/src/windows/versioninfo.rc
@@ -0,0 +1,20 @@
+#include "config.h"
+
+1 VERSIONINFO
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904E4"
+ BEGIN
+ VALUE "CompanyName", "Redshift Open Source Project"
+ VALUE "FileDescription", "Redshift"
+ VALUE "OriginalFilename", "redshift.exe"
+ VALUE "ProductName", "Redshift"
+ VALUE "ProductVersion", PACKAGE_VERSION
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x409, 1252
+ END
+END