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
path: root/config
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2008-10-20 02:01:46 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2008-10-20 02:01:46 +0400
commitf1f27c0350bbff1aa7f444f75eab294dd6b78e16 (patch)
tree2abbd1bab0ed7b39be2fd458ac807cce3f570223 /config
parent3544a4bd366c98bd5e514c7637ce0b1a369b6282 (diff)
=== SCons ===
[#17867] Adds option to SCONS to generate Python API documentation Added patch from Brandano with some small improvements (BF_DOCDIR, clean) by yours truly. To use make sure you have epydoc installed. Enable with WITH_BF_BPYDOC=1.
Diffstat (limited to 'config')
-rw-r--r--config/darwin-config.py1
-rw-r--r--config/linux2-config.py1
-rw-r--r--config/linuxcross-config.py1
-rw-r--r--config/openbsd3-config.py1
-rw-r--r--config/sunos5-config.py1
-rw-r--r--config/win32-mingw-config.py1
-rw-r--r--config/win32-vc-config.py1
7 files changed, 7 insertions, 0 deletions
diff --git a/config/darwin-config.py b/config/darwin-config.py
index 0eb275dcaf4..cc6c6ef76af 100644
--- a/config/darwin-config.py
+++ b/config/darwin-config.py
@@ -268,3 +268,4 @@ BF_DEBUG_FLAGS = '-g'
BF_BUILDDIR='../build/darwin'
BF_INSTALLDIR='../install/darwin'
+BF_DOCDIR='../install/doc'
diff --git a/config/linux2-config.py b/config/linux2-config.py
index 2b7bf074f83..74853de70b6 100644
--- a/config/linux2-config.py
+++ b/config/linux2-config.py
@@ -205,6 +205,7 @@ BF_DEBUG_FLAGS = '-g'
BF_BUILDDIR = '../build/linux2'
BF_INSTALLDIR='../install/linux2'
+BF_DOCDIR='../install/doc'
#Link against pthread
diff --git a/config/linuxcross-config.py b/config/linuxcross-config.py
index 9d58512151b..13f477d21f3 100644
--- a/config/linuxcross-config.py
+++ b/config/linuxcross-config.py
@@ -148,3 +148,4 @@ BF_DEBUG_FLAGS= ''
BF_BUILDDIR = '../build/linuxcross'
BF_INSTALLDIR='../install/linuxcross'
+BF_DOCDIR='../install/doc'
diff --git a/config/openbsd3-config.py b/config/openbsd3-config.py
index 5ef3d90f168..1cd93008561 100644
--- a/config/openbsd3-config.py
+++ b/config/openbsd3-config.py
@@ -163,3 +163,4 @@ BF_DEBUG_FLAGS = '-g'
BF_BUILDDIR='../build/openbsd3'
BF_INSTALLDIR='../install/openbsd3'
+BF_DOCDIR='../install/doc'
diff --git a/config/sunos5-config.py b/config/sunos5-config.py
index bfb1513ca3f..a5ba33e44cd 100644
--- a/config/sunos5-config.py
+++ b/config/sunos5-config.py
@@ -177,6 +177,7 @@ BF_DEBUG_FLAGS = ''
BF_BUILDDIR = '../build/sunos5'
BF_INSTALLDIR='../install/sunos5'
+BF_DOCDIR='../install/doc'
PLATFORM_LINKFLAGS = ['']
diff --git a/config/win32-mingw-config.py b/config/win32-mingw-config.py
index 4ff93bf7078..65b7beb79ad 100644
--- a/config/win32-mingw-config.py
+++ b/config/win32-mingw-config.py
@@ -167,3 +167,4 @@ BF_PROFILE = 'false'
BF_BUILDDIR = '..\\build\\win32-mingw'
BF_INSTALLDIR='..\\install\\win32-mingw'
+BF_DOCDIR = '..\\install\\doc' \ No newline at end of file
diff --git a/config/win32-vc-config.py b/config/win32-vc-config.py
index 1b7737ed004..14fd8b3aac7 100644
--- a/config/win32-vc-config.py
+++ b/config/win32-vc-config.py
@@ -187,3 +187,4 @@ PLATFORM_LINKFLAGS = '''
BF_BUILDDIR = '..\\build\\win32-vc'
BF_INSTALLDIR='..\\install\\win32-vc'
+BF_DOCDIR='..\\install\\doc'