3e88a2f44c
Pretty straightforward - Remove any depsgraph paths from INC - Add a dependency though LIB when needed context: https://devtalk.blender.org/t/cmake-cleanup/30260 Pull Request: https://projects.blender.org/blender/blender/pulls/110317
35 lines
526 B
CMake
35 lines
526 B
CMake
# SPDX-FileCopyrightText: 2023 Blender Foundation
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
set(INC
|
|
../include
|
|
../../gpu
|
|
../../makesrna
|
|
../../render
|
|
../../../../intern/clog
|
|
)
|
|
|
|
set(INC_SYS
|
|
|
|
)
|
|
|
|
set(SRC
|
|
editmball_undo.cc
|
|
mball_edit.cc
|
|
mball_ops.cc
|
|
|
|
mball_intern.h
|
|
)
|
|
|
|
set(LIB
|
|
PRIVATE bf::blenkernel
|
|
PRIVATE bf::blenlib
|
|
PRIVATE bf::depsgraph
|
|
PRIVATE bf::dna
|
|
PRIVATE bf::intern::guardedalloc
|
|
PRIVATE bf::windowmanager
|
|
)
|
|
|
|
blender_add_lib(bf_editor_metaball "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|