Use a shorter/simpler license convention, stops the header taking so much space. Follow the SPDX license specification: https://spdx.org/licenses - C/C++/objc/objc++ - Python - Shell Scripts - CMake, GNUmakefile While most of the source tree has been included - `./extern/` was left out. - `./intern/cycles` & `./intern/atomic` are also excluded because they use different header conventions. doc/license/SPDX-license-identifiers.txt has been added to list SPDX all used identifiers. See P2788 for the script that automated these edits. Reviewed By: brecht, mont29, sergey Ref D14069
57 lines
926 B
CMake
57 lines
926 B
CMake
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
set(INC
|
|
.
|
|
../../blenkernel
|
|
../../blenlib
|
|
../../bmesh
|
|
../../depsgraph
|
|
../../makesdna
|
|
../../../../intern/guardedalloc
|
|
)
|
|
|
|
set(INC_SYS
|
|
${PYTHON_INCLUDE_DIRS}
|
|
)
|
|
|
|
set(SRC
|
|
bmesh_py_api.c
|
|
bmesh_py_geometry.c
|
|
bmesh_py_ops.c
|
|
bmesh_py_ops_call.c
|
|
bmesh_py_types.c
|
|
bmesh_py_types_customdata.c
|
|
bmesh_py_types_meshdata.c
|
|
bmesh_py_types_select.c
|
|
bmesh_py_utils.c
|
|
|
|
bmesh_py_api.h
|
|
bmesh_py_geometry.h
|
|
bmesh_py_ops.h
|
|
bmesh_py_ops_call.h
|
|
bmesh_py_types.h
|
|
bmesh_py_types_customdata.h
|
|
bmesh_py_types_meshdata.h
|
|
bmesh_py_types_select.h
|
|
bmesh_py_utils.h
|
|
)
|
|
|
|
set(LIB
|
|
bf_blenkernel
|
|
bf_blenlib
|
|
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}")
|