Files
test/source/blender/editors/mesh/CMakeLists.txt
2023-08-17 11:53:56 +10:00

102 lines
1.7 KiB
CMake

# SPDX-FileCopyrightText: 2023 Blender Authors
#
# SPDX-License-Identifier: GPL-2.0-or-later
set(INC
../include
../uvedit
../../blenfont
../../blenkernel
../../blentranslation
../../bmesh
../../depsgraph
../../draw
../../functions
../../geometry
../../gpu
../../imbuf
../../makesrna
../../render
../../windowmanager
../../../../intern/clog
# RNA_prototypes.h
${CMAKE_BINARY_DIR}/source/blender/makesrna
)
set(INC_SYS
)
set(SRC
editface.cc
editmesh_add.cc
editmesh_add_gizmo.cc
editmesh_attribute.cc
editmesh_automerge.cc
editmesh_bevel.cc
editmesh_bisect.cc
editmesh_extrude.cc
editmesh_extrude_screw.cc
editmesh_extrude_spin.cc
editmesh_extrude_spin_gizmo.cc
editmesh_inset.cc
editmesh_intersect.cc
editmesh_knife.cc
editmesh_knife_project.cc
editmesh_loopcut.cc
editmesh_mask_extract.cc
editmesh_path.cc
editmesh_polybuild.cc
editmesh_preselect_edgering.cc
editmesh_preselect_elem.cc
editmesh_rip.cc
editmesh_rip_edge.cc
editmesh_select.cc
editmesh_select_similar.cc
editmesh_tools.cc
editmesh_undo.cc
editmesh_utils.cc
mesh_data.cc
mesh_mirror.cc
mesh_ops.cc
meshtools.cc
mesh_intern.h
)
set(LIB
bf_blenkernel
PRIVATE bf::blenlib
PRIVATE bf::dna
PRIVATE bf::intern::guardedalloc
bf_windowmanager
)
if(WITH_FREESTYLE)
add_definitions(-DWITH_FREESTYLE)
endif()
if(WITH_BULLET)
add_definitions(-DWITH_BULLET)
endif()
if(WITH_GMP)
add_definitions(-DWITH_GMP)
endif()
if(WITH_TBB)
add_definitions(-DWITH_TBB)
list(APPEND INC_SYS
${TBB_INCLUDE_DIRS}
)
list(APPEND LIB
${TBB_LIBRARIES}
)
endif()
blender_add_lib(bf_editor_mesh "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
# RNA_prototypes.h
add_dependencies(bf_editor_mesh bf_rna)