- cmake was missing an inclide (IDE's wouldnt index)

- made doc generation always sumlink newly built docs to static URL. http://www.blender.org/documentation/250PythonDoc/
This commit is contained in:
Campbell Barton
2011-02-06 10:18:20 +00:00
parent c82da98f3d
commit 1cdab667bc
5 changed files with 15 additions and 7 deletions

View File

@@ -328,7 +328,7 @@ def rna2sphinx(BASEPATH):
file = open(filepath, "w")
fw = file.write
version_string = bpy.app.version_string.split("(")[0]
version_string = ".".join(str(v) for v in bpy.app.version)
if bpy.app.build_revision != "Unknown":
version_string = version_string + " r" + bpy.app.build_revision