Files
test/source/blender/python/bmesh/CMakeLists.txt
2024-09-25 18:04:27 +02:00

58 lines
994 B
CMake

# SPDX-FileCopyrightText: 2023 Blender Authors
#
# SPDX-License-Identifier: GPL-2.0-or-later
set(INC
.
../../blenkernel
../../bmesh
)
set(INC_SYS
${PYTHON_INCLUDE_DIRS}
)
set(SRC
bmesh_py_api.cc
bmesh_py_geometry.cc
bmesh_py_ops.cc
bmesh_py_ops_call.cc
bmesh_py_types.cc
bmesh_py_types_customdata.cc
bmesh_py_types_meshdata.cc
bmesh_py_types_select.cc
bmesh_py_utils.cc
bmesh_py_api.hh
bmesh_py_geometry.hh
bmesh_py_ops.hh
bmesh_py_ops_call.hh
bmesh_py_types.hh
bmesh_py_types_customdata.hh
bmesh_py_types_meshdata.hh
bmesh_py_types_select.hh
bmesh_py_utils.hh
)
set(LIB
bf_blenkernel
PRIVATE bf::blenlib
PRIVATE bf::depsgraph
PRIVATE bf::dna
PRIVATE bf::intern::guardedalloc
bf_python_mathutils
${PYTHON_LINKFLAGS}
${PYTHON_LIBRARIES}
)
if(WITH_FREESTYLE)
add_definitions(-DWITH_FREESTYLE)
endif()
if(WITH_GMP)
add_definitions(-DWITH_GMP)
endif()
blender_add_lib(bf_python_bmesh "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")