diff options
author | 2009-07-18 14:16:54 -0400 | |
---|---|---|
committer | 2009-07-18 14:16:54 -0400 | |
commit | 8eb45cf365f045b9d5b5a9bc601f78fd75cb7cd9 (patch) | |
tree | b7a8170fac9c9f62227ffc3fa8f830933d5176f7 /src/textadept.rc | |
parent | b81c4678ce7918ba0ed695f428356c579155e756 (diff) | |
download | textadept-8eb45cf365f045b9d5b5a9bc601f78fd75cb7cd9.tar.gz textadept-8eb45cf365f045b9d5b5a9bc601f78fd75cb7cd9.zip |
Can cross-compile to Win32.
Diffstat (limited to 'src/textadept.rc')
-rw-r--r-- | src/textadept.rc | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/textadept.rc b/src/textadept.rc new file mode 100644 index 00000000..b8f037d3 --- /dev/null +++ b/src/textadept.rc @@ -0,0 +1,28 @@ +#include "winver.h"
+
+textadept ICON "../core/images/textadept.ico\0"
+
+VS_VERSION_INFO VERSIONINFO
+FILEVERSION 1, 9, 0, 0
+PRODUCTVERSION 1, 9, 0, 0
+FILEFLAGSMASK 0x3fL
+FILEFLAGS 0
+FILEOS VOS_NT_WINDOWS32
+FILETYPE VFT_APP
+FILESUBTYPE VFT2_UNKNOWN
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904b0"
+ BEGIN
+ VALUE "CompanyName", "Mitchell\0"
+ VALUE "FileDescription", "textadept\0"
+ VALUE "FileVersion", "1.9\0"
+ VALUE "InternalName", "textadept\0"
+ VALUE "LegalCopyright", "Copyright 2006-2009 by Mitchell\0"
+ VALUE "OriginalFilename", "textadept.exe\0"
+ VALUE "ProductName", "textadept\0"
+ VALUE "ProductVersion", "1.9\0"
+ END
+ END
+END
|