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/curve/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

49 lines
792 B
CMake

# SPDX-License-Identifier: GPL-2.0-or-later
set(INC
../include
../../blenkernel
../../blenlib
../../blentranslation
../../depsgraph
../../gpu
../../makesdna
../../makesrna
../../windowmanager
../../../../intern/clog
../../../../intern/guardedalloc
../../../../extern/curve_fit_nd
# RNA_prototypes.h
${CMAKE_BINARY_DIR}/source/blender/makesrna
)
set(INC_SYS
)
set(SRC
curve_ops.c
editcurve.c
editcurve_add.c
editcurve_paint.c
editcurve_pen.c
editcurve_query.c
editcurve_select.c
editcurve_undo.cc
editfont.c
editfont_undo.c
curve_intern.h
)
set(LIB
bf_blenkernel
bf_blenlib
extern_curve_fit_nd
)
blender_add_lib(bf_editor_curve "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
# RNA_prototypes.h
add_dependencies(bf_editor_curve bf_rna)