Pretty straightforward - Remove any bf_blenkernel paths from INC - Add a dependency though LIB when missing context: https://devtalk.blender.org/t/cmake-cleanup/30260 Pull Request: https://projects.blender.org/blender/blender/pulls/132282
57 lines
990 B
CMake
57 lines
990 B
CMake
# SPDX-FileCopyrightText: 2023 Blender Authors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
set(INC
|
|
.
|
|
)
|
|
|
|
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
|
|
PRIVATE bf::blenkernel
|
|
PRIVATE bf::blenlib
|
|
PRIVATE bf::bmesh
|
|
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}")
|