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:
authorCasey Corn <cmccad@yahoo.com>2003-05-26 23:20:56 +0400
committerCasey Corn <cmccad@yahoo.com>2003-05-26 23:20:56 +0400
commitf88284664149e114272aeea3e1deb5c0e105c674 (patch)
treec29bea5bc4331cd5fdea7df73d6a739933e764a5 /source/creator/buildinfo.c
parentac3ca167e99a22cc8530980a7336725ec39f125f (diff)
Added docs/formatted existing docs for doxygen.
Diffstat (limited to 'source/creator/buildinfo.c')
-rw-r--r--source/creator/buildinfo.c19
1 files changed, 18 insertions, 1 deletions
diff --git a/source/creator/buildinfo.c b/source/creator/buildinfo.c
index 6b975d1b115..bb6bde1757e 100644
--- a/source/creator/buildinfo.c
+++ b/source/creator/buildinfo.c
@@ -1,4 +1,4 @@
-/**
+/*
* $Id$
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
@@ -29,14 +29,31 @@
*
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
+/**
+ * \file buildinfo.c
+ * \brief Info on the date, time, os, and type of blender build.
+ * \ingroup mainmodule
+ */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef BUILD_DATE
+/**
+ * Global build date.
+ */
char * build_date=BUILD_DATE;
+/**
+ * Global build time.
+ */
char * build_time=BUILD_TIME;
+/**
+ * Global build platform.
+ */
char * build_platform=BUILD_PLATFORM;
+/**
+ * Global build type.
+ */
char * build_type=BUILD_TYPE;
#endif