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

CMakeLists.txt « common « io « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a6818c0bf5d7eb30ac707c89690847cfd1cc10e3 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright 2020 Blender Foundation. All rights reserved.

set(INC
  .
  ../../blenkernel
  ../../blenlib
  ../../depsgraph
  ../../makesdna
  ../../../../intern/guardedalloc
  ../../makesrna
)

set(INC_SYS
)

set(SRC
  intern/abstract_hierarchy_iterator.cc
  intern/dupli_parent_finder.cc
  intern/dupli_persistent_id.cc
  intern/object_identifier.cc
  intern/path_util.cc
  intern/orientation.c

  IO_abstract_hierarchy_iterator.h
  IO_dupli_persistent_id.hh
  IO_path_util.hh
  IO_path_util_types.h
  IO_types.h
  IO_orientation.h
  intern/dupli_parent_finder.hh
)

set(LIB
  bf_blenkernel
  bf_blenlib
)

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

target_link_libraries(bf_io_common INTERFACE)

if(WITH_GTESTS)
  set(TEST_SRC
    intern/abstract_hierarchy_iterator_test.cc
    intern/hierarchy_context_order_test.cc
    intern/object_identifier_test.cc
  )
  set(TEST_INC
    ../../blenloader
  )
  set(TEST_LIB
    bf_blenloader_tests
    bf_io_common
  )
  include(GTestTesting)
  blender_add_test_lib(bf_io_common_tests "${TEST_SRC}" "${INC};${TEST_INC}" "${INC_SYS}" "${LIB};${TEST_LIB}")
endif()