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

CMakeLists.txt « space_clip « editors « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eddf1780d8b7a289e47402ccf7e2f9d96a8824f9 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright 2011 Blender Foundation.

set(INC
  ../include
  ../../blenfont
  ../../blenkernel
  ../../blenlib
  ../../blentranslation
  ../../depsgraph
  ../../gpu
  ../../imbuf
  ../../makesdna
  ../../makesrna
  ../../windowmanager
  ../../../../intern/glew-mx
  ../../../../intern/guardedalloc

  # dna_type_offsets.h
  ${CMAKE_CURRENT_BINARY_DIR}/../../makesdna/intern
  # RNA_prototypes.h
  ${CMAKE_BINARY_DIR}/source/blender/makesrna
)

set(SRC
  clip_buttons.c
  clip_dopesheet_draw.c
  clip_dopesheet_ops.c
  clip_draw.c
  clip_editor.c
  clip_graph_draw.c
  clip_graph_ops.c
  clip_ops.c
  clip_toolbar.c
  clip_utils.c
  space_clip.c
  tracking_ops.c
  tracking_ops_detect.c
  tracking_ops_orient.c
  tracking_ops_plane.c
  tracking_ops_solve.c
  tracking_ops_stabilize.c
  tracking_ops_track.c
  tracking_ops_utils.c
  tracking_select.c

  clip_intern.h
  tracking_ops_intern.h
)

set(LIB
  bf_blenkernel
  bf_blenlib
)


blender_add_lib(bf_editor_space_clip "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")

# Needed so we can use dna_type_offsets.h for defaults initialization.
add_dependencies(bf_editor_space_clip bf_dna)
# RNA_prototypes.h
add_dependencies(bf_editor_space_clip bf_rna)