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

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

set(INC
  .
  ../../blenlib
  ../../imbuf
  ../../../../intern/guardedalloc
)

set(INC_SYS
  ${JPEG_INCLUDE_DIR}
)

set(SRC
  intern/avi.c
  intern/avi_codecs.c
  intern/avi_endian.c
  intern/avi_mjpeg.c
  intern/avi_options.c
  intern/avi_rgb.c
  intern/avi_rgb32.c

  AVI_avi.h
  intern/avi_endian.h
  intern/avi_intern.h
  intern/avi_mjpeg.h
  intern/avi_rgb.h
  intern/avi_rgb32.h
)

set(LIB
  ${JPEG_LIBRARIES}
)

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