* Support bidirectional type lookups. E.g. finding the base type of a field was supported, but not the other way around. This also removes the todo in `get_vector_type`. To achieve this, types have to be registered up-front. * Separate `CPPType` from other "type traits". For example, previously `ValueOrFieldCPPType` adds additional behavior on top of `CPPType`. Previously, it was a subclass, now it just contains a reference to the `CPPType` it corresponds to. This follows the composition-over-inheritance idea. This makes it easier to have self-contained "type traits" without having to put everything into `CPPType`. Differential Revision: https://developer.blender.org/D16479
87 lines
2.0 KiB
CMake
87 lines
2.0 KiB
CMake
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
set(INC
|
|
.
|
|
../blenlib
|
|
../makesdna
|
|
../../../intern/guardedalloc
|
|
)
|
|
|
|
set(INC_SYS
|
|
)
|
|
|
|
set(SRC
|
|
intern/cpp_types.cc
|
|
intern/field.cc
|
|
intern/field_cpp_type.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
|
|
|
|
FN_field.hh
|
|
FN_field_cpp_type.hh
|
|
FN_field_cpp_type_make.hh
|
|
FN_init.h
|
|
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
|
|
)
|
|
|
|
set(LIB
|
|
bf_blenlib
|
|
)
|
|
|
|
if(WITH_TBB)
|
|
add_definitions(-DWITH_TBB)
|
|
if(WIN32)
|
|
# TBB includes Windows.h which will define min/max macros
|
|
# that will collide with the stl versions.
|
|
add_definitions(-DNOMINMAX)
|
|
endif()
|
|
list(APPEND INC_SYS
|
|
${TBB_INCLUDE_DIRS}
|
|
)
|
|
|
|
list(APPEND LIB
|
|
${TBB_LIBRARIES}
|
|
)
|
|
endif()
|
|
|
|
blender_add_lib(bf_functions "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|
|
|
|
if(WITH_GTESTS)
|
|
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
|
|
)
|
|
include(GTestTesting)
|
|
blender_add_test_lib(bf_functions_tests "${TEST_SRC}" "${INC};${TEST_INC}" "${INC_SYS}" "${LIB};${TEST_LIB}")
|
|
endif()
|