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

CMakeLists.txt « clog « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f0ae3efbe4d31497c613fa74e11dcbafa84efa1 (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
# SPDX-License-Identifier: GPL-2.0-or-later

set(INC
  .
  ../atomic
  ../guardedalloc
)

set(INC_SYS

)

set(SRC
  clog.c

  CLG_log.h
)

set(LIB
)

# Disabled for makesdna/makesrna.
add_definitions(-DWITH_CLOG_PTHREADS)

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