443ea628c5
Small operator confirmations get separate confirm and cancel buttons, better descriptions and configurable confirm button text. But still popup at cursor location and can be cancelled with mouse movement. Pull Request: https://projects.blender.org/blender/blender/pulls/118346
36 lines
536 B
CMake
36 lines
536 B
CMake
# SPDX-FileCopyrightText: 2023 Blender Authors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
set(INC
|
|
../include
|
|
../../blenkernel
|
|
../../blentranslation
|
|
../../gpu
|
|
../../makesrna
|
|
../../render
|
|
../../windowmanager
|
|
)
|
|
|
|
set(INC_SYS
|
|
|
|
)
|
|
|
|
set(SRC
|
|
editmball_undo.cc
|
|
mball_edit.cc
|
|
mball_ops.cc
|
|
|
|
mball_intern.h
|
|
)
|
|
|
|
set(LIB
|
|
PRIVATE bf::blenlib
|
|
PRIVATE bf::depsgraph
|
|
PRIVATE bf::dna
|
|
PRIVATE bf::intern::clog
|
|
PRIVATE bf::intern::guardedalloc
|
|
)
|
|
|
|
blender_add_lib(bf_editor_metaball "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|