blob: cf27196de246a342de69e09174fb835d48e0c838 (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
qt_internal_add_3rdparty_library(BundledEmbree
STATIC
INSTALL
EXCEPTIONS
)
qt_internal_extend_target(BundledEmbree
SOURCES
common/sys/sysinfo.cpp
common/sys/alloc.cpp
common/sys/filename.cpp
common/sys/library.cpp
common/sys/thread.cpp
common/sys/string.cpp
common/sys/regression.cpp
common/sys/mutex.cpp
common/sys/condition.cpp
common/sys/barrier.cpp
common/math/constants.cpp
common/simd/sse.cpp
common/lexers/stringstream.cpp
common/lexers/tokenstream.cpp
common/tasking/taskschedulerinternal.cpp
kernels/common/device.cpp
kernels/common/stat.cpp
kernels/common/acceln.cpp
kernels/common/accelset.cpp
kernels/common/state.cpp
kernels/common/rtcore.cpp
kernels/common/rtcore_builder.cpp
kernels/common/scene.cpp
kernels/common/alloc.cpp
kernels/common/geometry.cpp
kernels/common/scene_triangle_mesh.cpp
kernels/geometry/primitive4.cpp
kernels/builders/primrefgen.cpp
kernels/bvh/bvh.cpp
kernels/bvh/bvh_statistics.cpp
kernels/bvh/bvh4_factory.cpp
kernels/bvh/bvh8_factory.cpp
kernels/bvh/bvh_collider.cpp
kernels/bvh/bvh_rotate.cpp
kernels/bvh/bvh_refit.cpp
kernels/bvh/bvh_builder.cpp
kernels/bvh/bvh_builder_morton.cpp
kernels/bvh/bvh_builder_sah.cpp
kernels/bvh/bvh_builder_sah_spatial.cpp
kernels/bvh/bvh_builder_sah_mb.cpp
kernels/bvh/bvh_builder_twolevel.cpp
kernels/bvh/bvh_intersector1_bvh4.cpp
)
qt_disable_warnings(BundledEmbree)
qt_set_symbol_visibility_hidden(BundledEmbree)
if (WIN32)
qt_disable_unicode_defines(BundledEmbree)
endif()
if (IOS)
qt_internal_extend_target(BundledEmbree COMPILE_OPTIONS -fembed-bitcode)
endif()
# Use SSE2 only, ignore AVX/SSE4.2 for now
qt_internal_extend_target(BundledEmbree DEFINES
EMBREE_TARGET_SSE2
__SSE2__
__SSE__
EMBREE_LOWEST_ISA
TASKING_INTERNAL
NDEBUG
)
|