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>2019-09-09 15:32:34 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-09-09 16:17:03 +0300
commitf5e0dfe59c7e748907f955f848264751ed0967f0 (patch)
treea4bf4369b1076ffd7f449061f04d2813ce715a15 /source/blender/makesdna/intern/CMakeLists.txt
parente164afe9b5f98fe1ddb2ce063e1df9e9926cacfd (diff)
DNA: initial DNA defaults support
This provides an API to access structs with their members set to default values: - DNA_struct_default_get(name) - DNA_struct_default_alloc(name) Currently this is only used for scene & view shading initialization, eventually it can be used for RNA defaults and initializing DNA struct members on file reading.
Diffstat (limited to 'source/blender/makesdna/intern/CMakeLists.txt')
-rw-r--r--source/blender/makesdna/intern/CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/makesdna/intern/CMakeLists.txt b/source/blender/makesdna/intern/CMakeLists.txt
index 178ef219c4d..92ca09dcbca 100644
--- a/source/blender/makesdna/intern/CMakeLists.txt
+++ b/source/blender/makesdna/intern/CMakeLists.txt
@@ -77,7 +77,7 @@ add_custom_command(
# -----------------------------------------------------------------------------
# Build bf_dna library
set(INC
-
+ ${CMAKE_CURRENT_BINARY_DIR}
)
set(INC_SYS
@@ -85,6 +85,7 @@ set(INC_SYS
)
set(SRC
+ dna_defaults.c
dna_genfile.c
dna_utils.c
${CMAKE_CURRENT_BINARY_DIR}/dna.c
@@ -126,6 +127,9 @@ set(SRC
../../blenlib/intern/endian_switch.c
../../blenlib/intern/hash_mm2a.c
../../blenlib/intern/listbase.c
+
+ ../DNA_scene_defaults.h
+ ../DNA_view3d_defaults.h
)
set(LIB