This caused build errors on the docs builder, I can't seem to reproduce locally, so revert for now and have another look at some point in the future. Sadly as these changes usually go, this took5c515e26bband2f0fc7fc9fwith it as well. Pull Request: https://projects.blender.org/blender/blender/pulls/132559
45 lines
840 B
CMake
45 lines
840 B
CMake
# SPDX-FileCopyrightText: 2023 Blender Authors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
set(INC
|
|
../include
|
|
../../makesrna
|
|
|
|
# RNA_prototypes.hh
|
|
${CMAKE_BINARY_DIR}/source/blender/makesrna
|
|
)
|
|
|
|
set(INC_SYS
|
|
)
|
|
|
|
set(SRC
|
|
geometry_attributes.cc
|
|
geometry_ops.cc
|
|
geometry_randomization.cc
|
|
node_group_operator.cc
|
|
|
|
geometry_intern.hh
|
|
)
|
|
|
|
set(LIB
|
|
PRIVATE bf::asset_system
|
|
PRIVATE bf::blenkernel
|
|
PRIVATE bf::blenlib
|
|
PRIVATE bf::blentranslation
|
|
PRIVATE bf::bmesh
|
|
PRIVATE bf::depsgraph
|
|
PRIVATE bf::dna
|
|
bf_editor_object
|
|
PRIVATE bf::extern::fmtlib
|
|
PRIVATE bf::functions
|
|
PRIVATE bf::intern::guardedalloc
|
|
PRIVATE bf::nodes
|
|
PRIVATE bf::windowmanager
|
|
)
|
|
|
|
blender_add_lib(bf_editor_geometry "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|
|
|
|
# RNA_prototypes.hh dna_type_offsets.h
|
|
add_dependencies(bf_editor_geometry bf_rna)
|