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
45 lines
921 B
CMake
45 lines
921 B
CMake
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
set(INC
|
|
../include
|
|
../../blenkernel
|
|
../../blenlib
|
|
../../blentranslation
|
|
../../bmesh
|
|
../../depsgraph
|
|
../../gpu
|
|
../../makesdna
|
|
../../makesrna
|
|
../../windowmanager
|
|
../../../../intern/clog
|
|
../../../../intern/eigen
|
|
../../../../intern/glew-mx
|
|
../../../../intern/guardedalloc
|
|
)
|
|
|
|
set(SRC
|
|
gizmo_draw_utils.c
|
|
gizmo_geometry.h
|
|
gizmo_library_intern.h
|
|
gizmo_library_presets.c
|
|
gizmo_library_utils.c
|
|
geometry/geom_arrow_gizmo.c
|
|
geometry/geom_cube_gizmo.c
|
|
geometry/geom_dial_gizmo.c
|
|
gizmo_types/arrow3d_gizmo.c
|
|
gizmo_types/blank3d_gizmo.c
|
|
gizmo_types/button2d_gizmo.c
|
|
gizmo_types/cage2d_gizmo.c
|
|
gizmo_types/cage3d_gizmo.c
|
|
gizmo_types/dial3d_gizmo.c
|
|
gizmo_types/move3d_gizmo.c
|
|
gizmo_types/primitive3d_gizmo.c
|
|
gizmo_types/snap3d_gizmo.c
|
|
)
|
|
|
|
set(LIB
|
|
)
|
|
|
|
|
|
blender_add_lib(bf_editor_gizmo_library "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|