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

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

set(INC
  .
  ./importer
  ../common
  ../../blenkernel
  ../../blenlib
  ../../bmesh
  ../../bmesh/intern
  ../../depsgraph
  ../../editors/include
  ../../makesdna
  ../../makesrna
  ../../nodes
  ../../windowmanager
  ../../../../extern/fast_float
  ../../../../intern/guardedalloc
)

set(INC_SYS

)

set(SRC
    IO_stl.cc
    importer/stl_import.cc
    importer/stl_import_ascii_reader.cc
    importer/stl_import_binary_reader.cc
    importer/stl_import_mesh.cc

    IO_stl.h
    importer/stl_import.hh
    importer/stl_import_ascii_reader.hh
    importer/stl_import_binary_reader.hh
    importer/stl_import_mesh.hh
)

set(LIB
  bf_blenkernel
  bf_io_common
)

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