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

CMakeLists.txt « texture « nodes « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 77db71d4b1a117aabdf315ae5d59f1239735eceb (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
63
# SPDX-License-Identifier: GPL-2.0-or-later

set(INC
  .
  ../
  ../intern
  ../../editors/include
  ../../blenkernel
  ../../blenlib
  ../../blentranslation
  ../../depsgraph
  ../../imbuf
  ../../makesdna
  ../../makesrna
  ../../render
  ../../windowmanager
  ../../../../intern/guardedalloc
  ../../bmesh
  # RNA_prototypes.h
  ${CMAKE_BINARY_DIR}/source/blender/makesrna
)


set(SRC
  nodes/node_texture_at.c
  nodes/node_texture_bricks.c
  nodes/node_texture_checker.c
  nodes/node_texture_combine_color.c
  nodes/node_texture_common.c
  nodes/node_texture_compose.c
  nodes/node_texture_coord.c
  nodes/node_texture_curves.c
  nodes/node_texture_decompose.c
  nodes/node_texture_distance.c
  nodes/node_texture_hueSatVal.c
  nodes/node_texture_image.c
  nodes/node_texture_invert.c
  nodes/node_texture_math.c
  nodes/node_texture_mixRgb.c
  nodes/node_texture_output.c
  nodes/node_texture_proc.c
  nodes/node_texture_rotate.c
  nodes/node_texture_scale.c
  nodes/node_texture_separate_color.c
  nodes/node_texture_texture.c
  nodes/node_texture_translate.c
  nodes/node_texture_valToNor.c
  nodes/node_texture_valToRgb.c
  nodes/node_texture_viewer.c
  node_texture_tree.c
  node_texture_util.c

  node_texture_util.h
)

set(LIB
  bf_nodes
)

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

# RNA_prototypes.h
add_dependencies(bf_nodes_texture bf_rna)