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>2017-11-29 13:11:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-11-29 13:11:29 +0300
commite32cfb0743d9b4da08403f9fd33abd1cadbd0299 (patch)
tree81242103d85dba36875d6164e0ebc2836f48259f /source/blender/python/intern/CMakeLists.txt
parentad7fb1c028433621a9f71ab01bbda2ca827ffe74 (diff)
Cleanup: rename bpy_util -> bpy_capi_utils
This is for internal CAPI use only, avoid confusion w/ bpy.utils module.
Diffstat (limited to 'source/blender/python/intern/CMakeLists.txt')
-rw-r--r--source/blender/python/intern/CMakeLists.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/python/intern/CMakeLists.txt b/source/blender/python/intern/CMakeLists.txt
index dd84ce0ebe1..cdbf65546d3 100644
--- a/source/blender/python/intern/CMakeLists.txt
+++ b/source/blender/python/intern/CMakeLists.txt
@@ -45,8 +45,6 @@ set(INC_SYS
)
set(SRC
- gpu.c
- gpu_offscreen.c
bpy.c
bpy_app.c
bpy_app_alembic.c
@@ -59,6 +57,7 @@ set(SRC
bpy_app_openvdb.c
bpy_app_sdl.c
bpy_app_translations.c
+ bpy_capi_utils.c
bpy_driver.c
bpy_interface.c
bpy_interface_atexit.c
@@ -76,12 +75,12 @@ set(SRC
bpy_rna_driver.c
bpy_rna_id_collection.c
bpy_traceback.c
- bpy_util.c
bpy_utils_previews.c
bpy_utils_units.c
+ gpu.c
+ gpu_offscreen.c
stubs.c
- gpu.h
bpy.h
bpy_app.h
bpy_app_alembic.h
@@ -94,6 +93,7 @@ set(SRC
bpy_app_openvdb.h
bpy_app_sdl.h
bpy_app_translations.h
+ bpy_capi_utils.h
bpy_driver.h
bpy_intern_string.h
bpy_library.h
@@ -107,9 +107,9 @@ set(SRC
bpy_rna_driver.h
bpy_rna_id_collection.h
bpy_traceback.h
- bpy_util.h
bpy_utils_previews.h
bpy_utils_units.h
+ gpu.h
../BPY_extern.h
)