This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/editors/undo/CMakeLists.txt
Jacques Lucke 4bef5f3df7 Cleanup: move some undo related files to C++
For continued testing in D14139. Also see T103343.
2023-01-23 00:33:55 +01:00

41 lines
623 B
CMake

# SPDX-License-Identifier: GPL-2.0-or-later
set(INC
../include
../../asset_system
../../blenkernel
../../blenlib
../../blenloader
../../blentranslation
../../makesdna
../../makesrna
../../windowmanager
../../../../intern/clog
../../../../intern/guardedalloc
../../bmesh
)
set(INC_SYS
)
set(SRC
ed_undo.cc
memfile_undo.cc
undo_system_types.cc
undo_intern.hh
)
set(LIB
bf_blenkernel
bf_blenlib
bf_editor_curve
bf_editor_curves
bf_editor_lattice
bf_editor_mesh
bf_editor_metaball
bf_editor_physics
)
blender_add_lib(bf_editor_undo "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")