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>2008-12-31 08:20:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-12-31 08:20:35 +0300
commit58c5fd7066a978af61d8287acaa7722e6de2219b (patch)
treee01d7fb6939efbd29941d3c7efd0a6198b073944 /source/blender/CMakeLists.txt
parentd1e836f75c7430e9e9b4b9cabf40e859b6d7fa78 (diff)
Added WITH_PYTHON as a cmake option
Diffstat (limited to 'source/blender/CMakeLists.txt')
-rw-r--r--source/blender/CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/CMakeLists.txt b/source/blender/CMakeLists.txt
index 47b04b1df78..47688b67537 100644
--- a/source/blender/CMakeLists.txt
+++ b/source/blender/CMakeLists.txt
@@ -24,7 +24,7 @@
#
# ***** END GPL LICENSE BLOCK *****
-SUBDIRS(windowmanager editors avi nodes blenkernel blenlib blenloader blenpluginapi imbuf imbuf/intern/cineon gpu makesdna makesrna python radiosity readblenfile render yafray)
+SUBDIRS(windowmanager editors avi nodes blenkernel blenlib blenloader blenpluginapi imbuf imbuf/intern/cineon gpu makesdna makesrna radiosity readblenfile render yafray)
IF(WITH_INTERNATIONAL)
SUBDIRS(ftfont)
@@ -41,3 +41,7 @@ ENDIF(WITH_DDS)
IF(WITH_QUICKTIME)
SUBDIRS(quicktime)
ENDIF(WITH_QUICKTIME)
+
+IF(WITH_PYTHON)
+ SUBDIRS(python)
+ENDIF(WITH_PYTHON) \ No newline at end of file