Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « gizmo_library « editors « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0484c47f081200e5accf508d6fdd115a0c91afc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# 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
  # RNA_prototypes.h
  ${CMAKE_BINARY_DIR}/source/blender/makesrna
)

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}")

# RNA_prototypes.h
add_dependencies(bf_editor_gizmo_library bf_rna)