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:
authorJacques Lucke <jacques@blender.org>2020-06-27 21:58:24 +0300
committerJacques Lucke <jacques@blender.org>2020-06-27 21:58:35 +0300
commitff820496422da1b71352e6e55d68541fc6d6e2b3 (patch)
tree36610c3ed5813a5abff01828c4aa95d678dda25a /source/blender/functions/CMakeLists.txt
parente91d5811676c5ad110f3639ba815ccf082083606 (diff)
Functions: add MutableAttributesRef data structure
This will be used to reference the content of a CustomData structure in C++ code, that does not need to know who owns the data but only works with it.
Diffstat (limited to 'source/blender/functions/CMakeLists.txt')
-rw-r--r--source/blender/functions/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/functions/CMakeLists.txt b/source/blender/functions/CMakeLists.txt
index acaef1d146a..5b18dd4258e 100644
--- a/source/blender/functions/CMakeLists.txt
+++ b/source/blender/functions/CMakeLists.txt
@@ -27,11 +27,13 @@ set(INC_SYS
)
set(SRC
+ intern/attributes_ref.cc
intern/cpp_types.cc
intern/multi_function_network.cc
intern/multi_function_network_evaluation.cc
FN_array_spans.hh
+ FN_attributes_ref.hh
FN_cpp_type.hh
FN_cpp_types.hh
FN_multi_function.hh