Previously, the `UserData` and `LocalUserData` classes were only supposed to be used by the lazy-function system. However, they are generic enough so that they can also be used by the multi-function system. Therefore, this patch extracts them into a separate header that can be used in both evaluation systems. I'm doing this in preparation for being able to pass the geometry nodes logger to multi-functions, to be able to report errors from there. Pull Request: https://projects.blender.org/blender/blender/pulls/138861
79 lines
1.9 KiB
CMake
79 lines
1.9 KiB
CMake
# SPDX-FileCopyrightText: 2023 Blender Authors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
set(INC
|
|
PUBLIC .
|
|
)
|
|
|
|
set(INC_SYS
|
|
)
|
|
|
|
set(SRC
|
|
intern/field.cc
|
|
intern/lazy_function.cc
|
|
intern/lazy_function_execute.cc
|
|
intern/lazy_function_graph.cc
|
|
intern/lazy_function_graph_executor.cc
|
|
intern/multi_function.cc
|
|
intern/multi_function_builder.cc
|
|
intern/multi_function_params.cc
|
|
intern/multi_function_procedure.cc
|
|
intern/multi_function_procedure_builder.cc
|
|
intern/multi_function_procedure_executor.cc
|
|
intern/multi_function_procedure_optimization.cc
|
|
intern/user_data.cc
|
|
|
|
FN_field.hh
|
|
FN_lazy_function.hh
|
|
FN_lazy_function_execute.hh
|
|
FN_lazy_function_graph.hh
|
|
FN_lazy_function_graph_executor.hh
|
|
FN_multi_function.hh
|
|
FN_multi_function_builder.hh
|
|
FN_multi_function_context.hh
|
|
FN_multi_function_data_type.hh
|
|
FN_multi_function_param_type.hh
|
|
FN_multi_function_params.hh
|
|
FN_multi_function_procedure.hh
|
|
FN_multi_function_procedure_builder.hh
|
|
FN_multi_function_procedure_executor.hh
|
|
FN_multi_function_procedure_optimization.hh
|
|
FN_multi_function_signature.hh
|
|
FN_user_data.hh
|
|
)
|
|
|
|
set(LIB
|
|
PRIVATE bf::blenlib
|
|
PRIVATE bf::dna
|
|
PRIVATE bf::intern::guardedalloc
|
|
)
|
|
|
|
if(WITH_TBB)
|
|
if(WIN32)
|
|
# TBB includes Windows.h which will define min/max macros
|
|
# that will collide with the STL versions.
|
|
add_definitions(-DNOMINMAX)
|
|
endif()
|
|
endif()
|
|
|
|
blender_add_lib(bf_functions "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|
|
add_library(bf::functions ALIAS bf_functions)
|
|
|
|
if(WITH_GTESTS)
|
|
set(TEST_INC
|
|
)
|
|
set(TEST_SRC
|
|
tests/FN_field_test.cc
|
|
tests/FN_lazy_function_test.cc
|
|
tests/FN_multi_function_procedure_test.cc
|
|
tests/FN_multi_function_test.cc
|
|
|
|
tests/FN_multi_function_test_common.hh
|
|
)
|
|
set(TEST_LIB
|
|
bf_functions
|
|
)
|
|
blender_add_test_suite_lib(function "${TEST_SRC}" "${INC};${TEST_INC}" "${INC_SYS}" "${LIB};${TEST_LIB}")
|
|
endif()
|