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:
authorThomas Dinges <blender@dingto.org>2022-07-27 18:19:15 +0300
committerThomas Dinges <blender@dingto.org>2022-07-27 18:19:15 +0300
commitb2dd1f8f013ec31caf64907fe0fd3cb924dd9a5b (patch)
treef40e8302fd69ee86ebd05ad07343975d07c8e769 /source/blender/makesrna
parent32a9aac3b84f4742937dd8fd2afc14a443cb0248 (diff)
Fix build include for rna_curves.c
* Since curves are no longer experimental, this should be included at any time.
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/CMakeLists.txt b/source/blender/makesrna/intern/CMakeLists.txt
index 778c6a6bfdd..aaadd36341f 100644
--- a/source/blender/makesrna/intern/CMakeLists.txt
+++ b/source/blender/makesrna/intern/CMakeLists.txt
@@ -26,6 +26,7 @@ set(DEFSRC
rna_context.c
rna_curve.c
rna_curveprofile.c
+ rna_curves.c
rna_depsgraph.c
rna_dynamicpaint.c
rna_fcurve.c
@@ -85,7 +86,6 @@ set(DEFSRC
if(WITH_EXPERIMENTAL_FEATURES)
add_definitions(-DWITH_SIMULATION_DATABLOCK)
list(APPEND DEFSRC
- rna_curves.c
rna_simulation.c
)
endif()