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

CMakeLists.txt « subd « cycles « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c7674adba832e4e5c405432049075291c2c486ea (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
# SPDX-License-Identifier: Apache-2.0
# Copyright 2011-2022 Blender Foundation

set(INC
  ..
)

set(INC_SYS

)

set(SRC
  dice.cpp
  patch.cpp
  split.cpp
  patch_table.cpp
)

set(SRC_HEADERS
  dice.h
  patch.h
  patch_table.h
  split.h
  subpatch.h
)

set(LIB

)

include_directories(${INC})
include_directories(SYSTEM ${INC_SYS})

cycles_add_library(cycles_subd "${LIB}" ${SRC} ${SRC_HEADERS})