Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-04-01 10:56:45 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-04-01 10:56:45 +0400
commit308f813f3a1e7269e33212d07438d312bc8fcd58 (patch)
tree436cfb1d6fcae622c08036e560e73ffea9cc39be /source/icons
parent9999c958c8ee6c5923330f80e19128e5f0115ec0 (diff)
workaround for building blender with mingw, was giving syntax error, for now just dont include blender version in the exe for mingw
Diffstat (limited to 'source/icons')
-rw-r--r--source/icons/winblender.rc5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/icons/winblender.rc b/source/icons/winblender.rc
index 244c2cb2e2c..ea9285dbaaf 100644
--- a/source/icons/winblender.rc
+++ b/source/icons/winblender.rc
@@ -23,8 +23,13 @@ BEGIN
BEGIN
BLOCK "04090000"
BEGIN
+#ifdef FREE_WINDOWS // this doesnt work for mingw.
+ VALUE "FileVersion", "Unknown"
+ VALUE "ProductVersion", "Unknown"
+#else
VALUE "FileVersion", BLEN_VER_RC_STR
VALUE "ProductVersion", BLEN_VER_RC_STR
+#endif
VALUE "CompanyName", "Blender Foundation"
VALUE "FileDescription", "Blender"
VALUE "LegalCopyright", "GPLv2 (Blender Foundation)"