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

CMakeLists.txt « lzo « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0cea8169d06fde5431ea428e6e569cf70f7d9c53 (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
# Copyright 2006 Blender Foundation. All rights reserved.

remove_strict_flags()

set(INC

)

set(INC_SYS

)

set(SRC
  minilzo/minilzo.c

  minilzo/lzoconf.h
  minilzo/lzodefs.h
  minilzo/minilzo.h
)

set(LIB
)

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