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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-10-19 20:55:51 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-10-19 20:55:51 +0400
commitcb44f290435b245078526871dc37b8b8a528103c (patch)
tree919cdc97f637082879085fe406a0859c9acc2362 /source/creator
parent85a8f315b44f23ebae7d3b95c0e4c390b892a06d (diff)
Fix #19574: winbuildinfo.h error when compiling with cmake on windows. I've now removed winbuildinfo.h code and let scons on window just set environment vars like other operating systems. Note that cmake still doesn't get the date information on windows, implementation is missing for this.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/buildinfo.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/creator/buildinfo.c b/source/creator/buildinfo.c
index ac14010f572..3473814360b 100644
--- a/source/creator/buildinfo.c
+++ b/source/creator/buildinfo.c
@@ -32,13 +32,9 @@
#endif
#ifdef BUILD_DATE
-#if (!defined(WIN32) || defined(_WIN64))
const char * build_date=BUILD_DATE;
const char * build_time=BUILD_TIME;
const char * build_rev=BUILD_REV;
const char * build_platform=BUILD_PLATFORM;
const char * build_type=BUILD_TYPE;
-#else
-#include "winbuildinfo.h"
-#endif
#endif