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

CMakeLists.txt « util « cycles « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 701ba313c7981d4547e015871576db617524fc44 (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
73
74
75
76
77
78

set(INC
	.
	../../glew-mx
)

set(INC_SYS
	${GLEW_INCLUDE_PATH}
)

set(SRC
	util_cache.cpp
	util_cuda.cpp
	util_dynlib.cpp
	util_md5.cpp
	util_opencl.cpp
	util_path.cpp
	util_string.cpp
	util_simd.cpp
	util_system.cpp
	util_task.cpp
	util_time.cpp
	util_transform.cpp
)

if(WITH_CYCLES_STANDALONE AND WITH_CYCLES_STANDALONE_GUI)
	list(APPEND SRC
		util_view.cpp
	)
endif()

set(SRC_HEADERS
	util_algorithm.h
	util_args.h
	util_boundbox.h
	util_cache.h
	util_cuda.h
	util_debug.h
	util_dynlib.h
	util_foreach.h
	util_function.h
	util_half.h
	util_hash.h
	util_image.h
	util_list.h
	util_map.h
	util_math.h
	util_md5.h
	util_opencl.h
	util_opengl.h
	util_optimization.h
	util_param.h
	util_path.h
	util_progress.h
	util_set.h
	util_simd.h
	util_sseb.h
	util_ssef.h
	util_ssei.h
	util_stats.h
	util_string.h
	util_system.h
	util_task.h
	util_thread.h
	util_time.h
	util_transform.h
	util_types.h
	util_vector.h
	util_view.h
	util_xml.h
)

include_directories(${INC})
include_directories(SYSTEM ${INC_SYS})

add_definitions(${GL_DEFINITIONS})

add_library(cycles_util ${SRC} ${SRC_HEADERS})