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

CMakeLists.txt « viewport_compositor « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 58cf7567d837853458a590899a0a99f752b2baad (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
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright 2022 Blender Foundation. All rights reserved.

set(INC
  .
  ../gpu
  ../nodes
  ../imbuf
  ../blenlib
  ../makesdna
  ../makesrna
  ../blenkernel
  ../gpu/intern
  ../../../intern/guardedalloc
)


set(SRC
  intern/compositor_execute.cc
  intern/context.cc
  intern/conversion_processor_operation.cc
  intern/domain.cc
  intern/node_operation.cc
  intern/operation.cc
  intern/processor_operation.cc
  intern/realize_on_domain_processor_operation.cc
  intern/reduce_to_single_value_processor_operation.cc
  intern/result.cc
  intern/scheduler.cc
  intern/texture_pool.cc
  intern/utilities.cc

  VPC_compositor_execute.hh
  VPC_context.hh
  VPC_conversion_processor_operation.hh
  VPC_domain.hh
  VPC_input_descriptor.hh
  VPC_node_operation.hh
  VPC_operation.hh
  VPC_processor_operation.hh
  VPC_realize_on_domain_processor_operation.hh
  VPC_reduce_to_single_value_processor_operation.hh
  VPC_result.hh
  VPC_scheduler.hh
  VPC_texture_pool.hh
  VPC_utilities.hh
)

set(LIB
  bf_gpu
  bf_nodes
  bf_imbuf
  bf_blenlib
  bf_blenkernel
)

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