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:
Diffstat (limited to 'source/blender/python/intern/CMakeLists.txt')
-rw-r--r--source/blender/python/intern/CMakeLists.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/python/intern/CMakeLists.txt b/source/blender/python/intern/CMakeLists.txt
index 970c5ee3012..c4666304158 100644
--- a/source/blender/python/intern/CMakeLists.txt
+++ b/source/blender/python/intern/CMakeLists.txt
@@ -29,6 +29,7 @@ set(INC
../../makesdna
../../makesrna
../../blenkernel
+ ../../blenloader
../../windowmanager
../../editors/include
../../freestyle/intern/python
@@ -48,6 +49,7 @@ set(SRC
bpy_rna.c
bpy_rna_array.c
bpy_rna_callback.c
+ bpy_traceback.c
bpy_util.c
stubs.c
@@ -59,6 +61,7 @@ set(SRC
bpy_props.h
bpy_rna.h
bpy_rna_callback.h
+ bpy_traceback.h
bpy_util.h
../BPY_extern.h
)
@@ -68,4 +71,8 @@ if(WITH_BUILDINFO)
add_definitions(-DBUILD_DATE)
endif()
+if(WITH_PYTHON_MODULE)
+ add_definitions(-DWITH_PYTHON_MODULE)
+endif()
+
blender_add_lib(bf_python "${SRC}" "${INC}")