summaryrefslogtreecommitdiff
path: root/src/sna/meson.build
blob: 7408f63c82dbd318f2b5d9b882c12f993201f13c (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
config.set('USE_SNA', 1)

if cc.has_member('struct sysinfo', 'totalram',
		 prefix : '#include <sys/sysinfo.h>')
  config.set('HAVE_STRUCT_SYSINFO_TOTALRAM', 1)
endif

git_version_h = vcs_tag(input : 'git_version.h.in', output : 'git_version.h',
			fallback : 'not compiled from git',
			command : [ 'git', 'describe' ] )

config.set('HAVE_DOT_GIT', 1)

if cc.has_header('alloca.h')
  config.set('HAVE_ALLOCA_H', 1)
endif

sna_deps = [
  cc.find_library('m', required : true),
  dependency('threads', required : true),
  dependency('xorg-server', required : true),
  dependency('libdrm', required : true),
]

sna_sources = [
  'blt.c',
  'kgem.c',
  'sna_accel.c',
  'sna_acpi.c',
  'sna_blt.c',
  'sna_composite.c',
  'sna_cpu.c',
  'sna_damage.c',
  'sna_display.c',
  'sna_display_fake.c',
  'sna_driver.c',
  'sna_glyphs.c',
  'sna_gradient.c',
  'sna_io.c',
  'sna_render.c',
  'sna_stream.c',
  'sna_trapezoids.c',
  'sna_trapezoids_boxes.c',
  'sna_trapezoids_imprecise.c',
  'sna_trapezoids_mono.c',
  'sna_trapezoids_precise.c',
  'sna_tiling.c',
  'sna_transform.c',
  'sna_threads.c',
  'sna_vertex.c',
  'sna_video.c',
  'sna_video_overlay.c',
  'sna_video_sprite.c',
  'sna_video_textured.c',
  'gen2_render.c',
  'gen3_render.c',
  'gen4_common.c',
  'gen4_render.c',
  'gen4_source.c',
  'gen4_vertex.c',
  'gen5_render.c',
  'gen6_common.c',
  'gen6_render.c',
  'gen7_render.c',
  'gen8_eu.c',
  'gen8_render.c',
  'gen8_vertex.c',
  'gen9_render.c',
]

if libudev.found()
  sna_deps += libudev
endif

if with_valgrind
  sna_deps += valgrind
endif

if with_dri2
  sna_sources += 'sna_dri2.c'
  sna_deps += [
    dependency('dri2proto', required : true),
    cc.find_library('rt', required : true),
  ]
endif

if with_dri3
  sna_sources += 'sna_dri3.c'
  sna_deps += dri3
endif

if has_present
  sna_sources += 'sna_present.c'
  sna_deps += present
endif

if with_xvmc
  sna_sources += 'sna_video_hwmc.c'
endif

if debug == 'full'
  sna_sources += [
    'kgem_debug.c',
    'kgem_debug_gen2.c',
    'kgem_debug_gen3.c',
    'kgem_debug_gen4.c',
    'kgem_debug_gen5.c',
    'kgem_debug_gen6.c',
    'kgem_debug_gen7.c',
  ]
endif

if get_option('tearfree')
  config.set('TEARFREE', 1)
endif
if get_option('use-create2')
  config.set('USE_CREATE2', 1)
endif
if get_option('async-swap')
  config.set('USE_ASYNC_SWAP', 1)
endif

subdir('brw')
subdir('fb')

sna = static_library('sna',
		     [ git_version_h, sna_sources ],
		     dependencies : sna_deps,
		     link_with : [ brw, fb, ],
		     include_directories : inc,
		     c_args : [
		       '-Wno-unused-but-set-variable',
		       '-Wno-expansion-to-defined',
		       '-Wno-shift-negative-value',
		       '-Wno-maybe-uninitialized',
		       '-Wno-unused-parameter',
		       '-Wno-unused-function',
		       '-Wno-unused-variable',
		       '-Wno-sign-compare',
		       '-Wno-type-limits',
		       '-Wno-clobbered',
		     ],
		     install : false)